summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-10-03 18:06:27 +0100
committerSimon MacMullen <simon@rabbitmq.com>2012-10-03 18:06:27 +0100
commita39693e655bbf987f7a04688bd6b09762e39e266 (patch)
treecfee3c0639d38dac9a5df4bbe4409b6c78030671 /include
parentbcaca766246ece52187be5971e054388ae6bcaac (diff)
downloadrabbitmq-server-a39693e655bbf987f7a04688bd6b09762e39e266.tar.gz
Progress towards storing a GM pid -> queue pid mapping. This is dependent on not feeding the process_death message into remove_from_queue - bug 25195 suggests this might be TRTTD.
Diffstat (limited to 'include')
-rw-r--r--include/rabbit.hrl3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl
index 41cce0a3..3db2b68a 100644
--- a/include/rabbit.hrl
+++ b/include/rabbit.hrl
@@ -47,7 +47,8 @@
-record(exchange_serial, {name, next}).
-record(amqqueue, {name, durable, auto_delete, exclusive_owner = none,
- arguments, pid, slave_pids, sync_slave_pids, policy}).
+ arguments, pid, slave_pids, sync_slave_pids, policy,
+ gm_pids}).
%% mnesia doesn't like unary records, so we add a dummy 'value' field
-record(route, {binding, value = const}).