Create and initialise a message Queue. */
| 30 | public: |
| 31 | /** Create and initialise a message Queue. */ |
| 32 | Queue() |
| 33 | { |
| 34 | rt_mq_init(&mID, "mq", mPool, sizeof(T), sizeof(mPool), RT_IPC_FLAG_FIFO); |
| 35 | }; |
| 36 | |
| 37 | ~Queue() |
| 38 | { |
nothing calls this directly
no test coverage detected