Searched refs:K_MBOX_SIZE (Results 1 – 2 of 2) sorted by relevance
99 while ((mbox->last + 1) >= (mbox->first + K_MBOX_SIZE)) { in k_mbox_post()107 mbox->msgs[mbox->last % K_MBOX_SIZE] = msg; in k_mbox_post()145 if ((mbox->last + 1) >= (mbox->first + K_MBOX_SIZE)) { in k_mbox_trypost()150 mbox->msgs[mbox->last % K_MBOX_SIZE] = msg; in k_mbox_trypost()223 *msg = mbox->msgs[mbox->first % K_MBOX_SIZE]; in k_mbox_fetch()265 *msg = mbox->msgs[mbox->first % K_MBOX_SIZE]; in k_mbox_tryfetch()
25 #define K_MBOX_SIZE 128 macro32 void *msgs[K_MBOX_SIZE];
Completed in 3 milliseconds