Home
last modified time | relevance | path

Searched refs:K_MBOX_SIZE (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/ble_host/bt_host/port/core/
A Dmbox.c99 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()
/AliOS-Things-master/components/ble_host/bt_host/port/include/port/
A Dmbox.h25 #define K_MBOX_SIZE 128 macro
32 void *msgs[K_MBOX_SIZE];

Completed in 3 milliseconds