We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f59529 commit b8530b5Copy full SHA for b8530b5
common_smp/src/txe_queue_create.c
@@ -178,8 +178,8 @@ TX_THREAD *thread_ptr;
178
status = TX_SIZE_ERROR;
179
}
180
181
- /* Check for an invalid message size - greater than 16. */
182
- else if (message_size > TX_16_ULONG)
+ /* Check for an invalid message sizegreater than TX_QUEUE_MESSAGE_MAX_SIZE 16 by default. */
+ else if (message_size > TX_QUEUE_MESSAGE_MAX_SIZE)
183
{
184
185
/* Invalid message size specified. */
0 commit comments