| 118 | //----------------------------------------------------------------------------- |
| 119 | |
| 120 | bool isQueueRegistered(const char *name) |
| 121 | { |
| 122 | MutexHandle mh; |
| 123 | if(mh.lock(gDispatchData.mMutex, true)) |
| 124 | { |
| 125 | return gDispatchData.mQueues.retreive(name) != NULL; |
| 126 | } |
| 127 | |
| 128 | return false; |
| 129 | } |
| 130 | |
| 131 | void registerMessageQueue(const char *name) |
| 132 | { |
no test coverage detected