1
0
forked from fsfw/fsfw

no_queue value is 0xffffffff now

This commit is contained in:
2020-06-06 23:41:54 +02:00
parent 65999ac6d6
commit c81613690b
4 changed files with 27 additions and 30 deletions

View File

@ -2,6 +2,8 @@
#define FRAMEWORK_IPC_MESSAGEQUEUEIF_H_
// COULDDO: We could support blocking calls
// semaphores are being implemented, which makes this idea even more iteresting.
/**
* @defgroup message_queue Message Queue

View File

@ -16,7 +16,7 @@ typedef uint32_t MessageQueueId_t;
class MessageQueueSenderIF {
public:
static const MessageQueueId_t NO_QUEUE = 0;
static const MessageQueueId_t NO_QUEUE = 0xffffffff;
virtual ~MessageQueueSenderIF() {}