Home
last modified time | relevance | path

Searched refs:waiting (Results 1 – 25 of 97) sorted by relevance

1234

/Zephyr-latest/samples/kernel/condition_variables/simple/
DREADME.rst80 [thread zephyr_app_main] done is 0 which is < 20 so waiting on cond
143 [thread zephyr_app_main] done is 1 which is < 20 so waiting on cond
146 [thread zephyr_app_main] done is 2 which is < 20 so waiting on cond
149 [thread zephyr_app_main] done is 3 which is < 20 so waiting on cond
152 [thread zephyr_app_main] done is 4 which is < 20 so waiting on cond
155 [thread zephyr_app_main] done is 5 which is < 20 so waiting on cond
158 [thread zephyr_app_main] done is 6 which is < 20 so waiting on cond
161 [thread zephyr_app_main] done is 7 which is < 20 so waiting on cond
164 [thread zephyr_app_main] done is 8 which is < 20 so waiting on cond
167 [thread zephyr_app_main] done is 9 which is < 20 so waiting on cond
[all …]
/Zephyr-latest/samples/drivers/ipm/ipm_esp32/
DREADME.rst43 PRO_CPU is sending a request, waiting remote response...
45 PRO_CPU is sending a request, waiting remote response...
47 PRO_CPU is sending a request, waiting remote response...
49 PRO_CPU is sending a request, waiting remote response...
51 PRO_CPU is sending a request, waiting remote response...
53 PRO_CPU is sending a request, waiting remote response...
55 PRO_CPU is sending a request, waiting remote response...
57 PRO_CPU is sending a request, waiting remote response...
/Zephyr-latest/drivers/i2s/
DKconfig.esp3220 Max number of blocks waiting to be read from the I2S RX channel.
26 Max number of blocks waiting to be transmitted by the I2S TX channel.
/Zephyr-latest/drivers/lora/
DKconfig.rylrxxx34 int "timeout when waiting for response from radio serial interface after send cmd"
37 …Configure the number of milliseconds before timing out when waiting for acknowledgment from radio …
/Zephyr-latest/kernel/
Dpipe.c47 pipe->waiting++; in wait_for()
56 pipe->waiting--; in wait_for()
58 if (pipe->waiting == 0) { in wait_for()
71 pipe->waiting = 0; in z_impl_k_pipe_init()
180 } else if (pipe->waiting != 0) { in z_impl_k_pipe_write()
277 if (likely(pipe->waiting != 0)) { in z_impl_k_pipe_reset()
/Zephyr-latest/subsys/net/ip/
DKconfig.stack12 Set the TX thread stack size in bytes. The TX thread is waiting
22 Set the RX thread stack size in bytes. The RX thread is waiting
/Zephyr-latest/tests/benchmarks/app_kernel/
DREADME.txt27 | enqueue 1 byte msg in MSGQ to a waiting higher priority task | NNNNNN|
28 | enqueue 4 bytes in MSGQ to a waiting higher priority task | NNNNNN|
29 | enqueue 192 bytes in MSGQ to a waiting higher priority task | NNNNNN|
32 | signal to waiting high pri task | NNNNNN|
33 | signal to waiting high pri task, with timeout | NNNNNN|
41 | Send mailbox message to waiting high priority task and wait |
/Zephyr-latest/tests/drivers/gnss/gnss_api/
DKconfig31 int "Timeout waiting for a fix in seconds"
/Zephyr-latest/subsys/rtio/
DKconfig10 bool "Use a semaphore when waiting for completions in rtio_submit"
22 bool "Use a semaphore when waiting for completions in rtio_cqe_consume_block"
/Zephyr-latest/drivers/modem/
DKconfig.at_shell21 int "Timeout waiting for response to AT command in seconds"
/Zephyr-latest/drivers/flash/
DKconfig.nor62 bool "Sleep while waiting for flash operations to complete"
72 int "Delay between polls while waiting for an erase operation in ms"
76 The delay between polling while waiting for the flash to finish
/Zephyr-latest/soc/native/inf_clock/
DKconfig.soc12 sleep. Therefore do not use busy waits while waiting for something to happen
/Zephyr-latest/doc/kernel/services/timing/
Dtimers.rst64 If a thread is waiting on the timer, it is unblocked.
71 If a thread is waiting on the timer, it is unblocked.
78 If a thread is waiting on the timer, it continues waiting.
90 the thread continues without waiting. The synchronization operation
206 /* ensure timer has expired (waiting for expiry, if necessary) */
/Zephyr-latest/modules/hal_nordic/nrfs/backends/
DKconfig33 Delay when waiting for next message send retry in case of send error.
/Zephyr-latest/tests/kernel/pending/
DREADME.txt42 Testing preemptible thread waiting on timer ...
/Zephyr-latest/samples/drivers/uart/echo_bot/
DREADME.rst16 while waiting for incoming data.
/Zephyr-latest/doc/kernel/services/synchronization/
Dcondvar.rst24 desired (by waiting on the condition). The function
31 of those waiting threads and thus allow them to continue by signaling on
Dmutexes.rst67 if a higher priority thread begins waiting on the mutex. This allows the owning
69 at the same priority as the waiting thread. Once the mutex has been unlocked,
81 the high priority waiting thread times out), the kernel restores the thread's
Devents.rst32 conditions of multiple threads waiting on the event object. All threads whose
38 object prior to waiting. Care must be taken with this option when multiple
/Zephyr-latest/drivers/timer/
DKconfig.nrf_xrtc27 equivalent to waiting for stability if clock source does not have
/Zephyr-latest/samples/bluetooth/cap_acceptor/
DKconfig40 without waiting for a Broadcast Assistant to connect.
/Zephyr-latest/samples/subsys/console/getchar/
DREADME.rst12 character or blocks waiting for one. Using this function, it should be
/Zephyr-latest/samples/subsys/console/getline/
DREADME.rst12 line or blocks waiting for one. Using this function, it should be fairly
/Zephyr-latest/tests/kernel/context/
DREADME.txt94 Thread busy waiting for 20000 usecs
95 Thread busy waiting completed
/Zephyr-latest/doc/kernel/services/data_passing/
Dmailboxes.rst25 * A **receive queue** of threads that are waiting to receive a message.
187 thread, if one is currently waiting. Otherwise, the message is added
197 If the message is not received before the waiting period specified by the
206 even when the thread specifies a maximum waiting period.
207 The waiting period only limits how long the mailbox waits
309 appears before the waiting period specified by the receiving thread is reached,
318 threads of equal priority are sorted so that the one that started waiting
377 /* get a data item, waiting as long as needed */

1234