Searched refs:bound_sem (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/src/ |
D | main.c | 22 K_SEM_DEFINE(bound_sem, 0, 1); 24 volatile uint32_t bound_sem = 1; variable 36 k_sem_give(&bound_sem); in ep_bound() 38 bound_sem = 0; in ep_bound() 170 k_sem_take(&bound_sem, K_FOREVER); in main() 172 while (bound_sem != 0) { in main() 208 ret = k_sem_init(&bound_sem, 0, 1); in main() 223 k_sem_take(&bound_sem, K_FOREVER); in main()
|
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/remote/src/ |
D | main.c | 18 K_SEM_DEFINE(bound_sem, 0, 1); 20 volatile uint32_t bound_sem = 1; variable 32 k_sem_give(&bound_sem); in ep_bound() 34 bound_sem = 0; in ep_bound() 149 k_sem_take(&bound_sem, K_FOREVER); in main() 151 while (bound_sem != 0) { in main()
|
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/remote/src/ |
D | remote.c | 26 K_SEM_DEFINE(bound_sem, 0, 1); 123 k_sem_give(&bound_sem); in ep_bound() 131 k_sem_give(&bound_sem); in ep_unbound() 330 k_sem_take(&bound_sem, K_FOREVER); in init_ipc() 387 k_sem_take(&bound_sem, K_FOREVER); in main() 402 k_sem_take(&bound_sem, K_FOREVER); in main()
|
/Zephyr-latest/drivers/bluetooth/hci/ |
D | ipc.c | 42 struct k_sem bound_sem; member 319 k_sem_give(&ipc->bound_sem); in hci_ept_bound() 366 err = k_sem_take(&ipc->bound_sem, IPC_BOUND_TIMEOUT_IN_MS); in bt_ipc_open() 413 .bound_sem = Z_SEM_INITIALIZER(ipc_data_##inst.bound_sem, 0, 1), \
|