-
Notifications
You must be signed in to change notification settings - Fork 253
Description
OS_QUEUE_MAX_DEPTH is defined as 50 in osconfig.h for both pc-rtems and pc-linux, but the limit isn't applied/checked/or even used within OSAL.
Queue depth is accepted as input by OS_QueueCreate with no limiting within OSAL. Note cFE also has a max pipe depth (CFE_PLATFORM_SB_MAX_PIPE_DEPTH) that is applied by the cFE prior to calling OS_QueueCreate, but it's set to 256. This limit seems arbitrary at the cFE level.
Linux depth limit by default is 10 on at least CentOS, would be nice if it worked out of the box.
Reactions are currently unavailable