diff options
author | Chris Hall (GMCH) <chris.hall@highwayman.com> | 2009-12-03 20:10:30 +0000 |
---|---|---|
committer | Chris Hall (GMCH) <chris.hall@highwayman.com> | 2009-12-03 20:10:30 +0000 |
commit | 1a720bbef1c1bbe6bf29abe34b736e077e8dd864 (patch) | |
tree | ba93418726f6aab3084d570d9893ab29cb306e58 /lib/memtypes.c | |
parent | 606acaa3264d6868ad06d1874137c6aa81ad14e5 (diff) | |
download | quagga-1a720bbef1c1bbe6bf29abe34b736e077e8dd864.tar.bz2 quagga-1a720bbef1c1bbe6bf29abe34b736e077e8dd864.tar.xz |
Initial commit of lib/mqueue.c & .h
Adds message queue structure to manage the passing of messages
between qpthreads.
Diffstat (limited to 'lib/memtypes.c')
-rw-r--r-- | lib/memtypes.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/memtypes.c b/lib/memtypes.c index fb2557c8..18d8b8f8 100644 --- a/lib/memtypes.c +++ b/lib/memtypes.c @@ -32,6 +32,9 @@ struct memory_list memory_list_lib[] = { MTYPE_QPT_THREAD_ATTR, "qpt thread attributes" }, { MTYPE_QPT_MUTEX, "qpt mutex" }, { MTYPE_QPT_COND, "qpt condition variable" }, + { MTYPE_MQUEUE_QUEUE, "Mqueue queue structure" }, + { MTYPE_MQUEUE_BLOCKS, "Mqueue message blocks" }, + { MTYPE_MQUEUE_THREAD_SIGNAL, "Mqueue thread signal" }, { MTYPE_VTY, "VTY" }, { MTYPE_VTY_OUT_BUF, "VTY output buffer" }, { MTYPE_VTY_HIST, "VTY history" }, |