summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2011-11-15 13:16:17 +0000
committerSimon MacMullen <simon@rabbitmq.com>2011-11-15 13:16:17 +0000
commitd2f22b673b42e15bc4259bb7698f8b45904b2943 (patch)
treed11de943065be98fb1b43c345ad771914924ef0a /src
parente6a60dc204f902e6aec3da20cd486fd27969b018 (diff)
downloadrabbitmq-server-git-d2f22b673b42e15bc4259bb7698f8b45904b2943.tar.gz
More clarity.
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_guid.erl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rabbit_guid.erl b/src/rabbit_guid.erl
index da89b684d8..d92f58a250 100644
--- a/src/rabbit_guid.erl
+++ b/src/rabbit_guid.erl
@@ -77,8 +77,9 @@ guid() ->
%% slow since it takes a global lock and makes a system call.
%%
%% A persisted serial number, the node, and a unique reference
- %% uniquely identifies a process in space and time. We combine
- %% that with a process-local counter to give us a GUID.
+ %% (per node-incarnation) uniquely identifies a process in space
+ %% and time. We combine that with a process-local counter to give
+ %% us a GUID.
%%
%% We used to use self/0 here instead of the node and unique
%% reference. But PIDs wrap.