anchao commented on code in PR #12432: URL: https://github.com/apache/nuttx/pull/12432#discussion_r1625218093
########## sched/mqueue/mq_initialize.c: ########## @@ -52,6 +52,22 @@ struct list_node g_msgfreeirq; #endif +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/* This is a pool of pre-allocated message queue buffers */ + +static uint8_t g_msgpool[ Review Comment: Done ########## sched/signal/sig_initialize.c: ########## @@ -68,6 +68,17 @@ sq_queue_t g_sigpendingsignal; sq_queue_t g_sigpendingirqsignal; +/**************************************************************************** + * Private Data + ****************************************************************************/ + +/* This is a pool of pre-allocated signal structures buffers */ + +static uint8_t g_sigpool[ Review Comment: Done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
