Home
last modified time | relevance | path

Searched full:waiting (Results 1 – 25 of 159) sorted by relevance

1234567

/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/cyg/compress/src/
H A Dinflate.h21 HEAD, /* i: waiting for magic header */
22 FLAGS, /* i: waiting for method and flags (gzip) */
23 TIME, /* i: waiting for modification time (gzip) */
24 OS, /* i: waiting for extra flags and operating system (gzip) */
25 EXLEN, /* i: waiting for extra length (gzip) */
26 EXTRA, /* i: waiting for extra bytes (gzip) */
27 NAME, /* i: waiting for end of file name (gzip) */
28 COMMENT, /* i: waiting for end of comment (gzip) */
29 HCRC, /* i: waiting for header crc (gzip) */
30 DICTID, /* i: waiting for dictionary check value */
[all …]
/nrf52832-nimble/rt-thread/components/net/freemodbus/port/
H A Dportevent_m.c52 /* waiting forever OS event */ in xMBMasterPortEventGet()
93 * @param lTimeOut the waiting time.
99 /*If waiting time is -1 .It will wait forever */ in xMBMasterRunResTake()
116 * @note There functions will block modbus master poll while execute OS waiting.
117 * So,for real-time of system.Do not execute too much waiting process.
138 * @note There functions will block modbus master poll while execute OS waiting.
139 * So,for real-time of system.Do not execute too much waiting process.
160 * @note There functions will block modbus master poll while execute OS waiting.
161 * So,for real-time of system.Do not execute too much waiting process.
182 * @note There functions will block modbus master poll while execute OS waiting.
[all …]
H A Dportevent.c47 /* waiting forever OS event */ in xMBPortEventGet()
/nrf52832-nimble/rt-thread/components/libc/pthreads/
H A Dpthread_rwlock.c137 /* give preference to waiting writers */ in pthread_rwlock_rdlock()
141 /* rw_mutex will be released when waiting for rw_condreaders */ in pthread_rwlock_rdlock()
143 /* rw_mutex should have been taken again when returned from waiting */ in pthread_rwlock_rdlock()
172 result = EBUSY; /* held by a writer or waiting writers */ in pthread_rwlock_tryrdlock()
195 /* give preference to waiting writers */ in pthread_rwlock_timedrdlock()
199 /* rw_mutex will be released when waiting for rw_condreaders */ in pthread_rwlock_timedrdlock()
201 /* rw_mutex should have been taken again when returned from waiting */ in pthread_rwlock_timedrdlock()
233 /* rw_mutex will be released when waiting for rw_condwriters */ in pthread_rwlock_timedwrlock()
235 /* rw_mutex should have been taken again when returned from waiting */ in pthread_rwlock_timedwrlock()
291 /* give preference to waiting writers over waiting readers */ in pthread_rwlock_unlock()
[all …]
H A Dpthread.h110 pthread_cond_t rw_condreaders; /* for reader threads waiting */
111 pthread_cond_t rw_condwriters; /* for writer threads waiting */
113 int rw_nwaitreaders; /* the number of reader threads waiting */
114 int rw_nwaitwriters; /* the number of writer threads waiting */
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/priv/
H A Dsockets_priv.h86 /** counter of how many threads are waiting for this socket using select */
155 /** Description for a task waiting in select */
157 /** Pointer to the next waiting task */
159 /** Pointer to the previous waiting task */
177 /** semaphore to wake up a task waiting for select */
/nrf52832-nimble/rt-thread/src/
H A Dipc.c11 * modify the type of IPC waiting time to rt_int32_t
317 * @param time the waiting time
350 /* no waiting, return with timeout */ in rt_sem_take()
377 /* has waiting time, start thread timer */ in rt_sem_take()
497 /* resume all waiting thread */ in rt_sem_control()
647 * @param time the waiting time
701 /* no waiting, return with timeout */ in rt_mutex_take()
732 /* has waiting time, start thread timer */ in rt_mutex_take()
1119 * @param timeout the waiting time
1184 /* no waiting */ in rt_event_recv()
[all …]
H A Dsignal.c232 /* set thread stat as waiting for signal */ in rt_signal_wait()
251 /* remove signal waiting flag */ in rt_signal_wait()
308 /* if thread is not waiting for signal */ in rt_thread_handle_sig()
/nrf52832-nimble/rt-thread/components/drivers/audio/
H A Daudio_pipe.c55 /* if the ringbuffer is empty, there won't be any writer waiting */ in rt_pipe_read()
75 /* waiting on suspended read list */ in rt_pipe_read()
159 /* pipe full, waiting on suspended write list */ in rt_pipe_write()
161 /* waiting on suspended read list */ in rt_pipe_write()
/nrf52832-nimble/rt-thread/components/vbus/share_hdr/
H A Dvbus_api.h38 * central writer thread is waiting. For Linux, it means there are some
39 * threads waiting for space to write.
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/kernel/asm/
H A Dsemaphore.h103 Attempt to lock the mutex pointed to by the mutex argument without waiting.
105 returns FALSE. If the function can lock the mutex without waiting, then
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/linux/test/
H A Dtest_npl_sem.c62 "ble_npl_sem_pend: error waiting for task2_sem."); in task1_handler()
79 "ble_npl_sem_pend: error waiting for task1_sem."); in task2_handler()
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/
H A Dnet.h144 BT_MESH_LPN_TIMER, /* Waiting for auto timer expiry */
149 BT_MESH_LPN_RECV_DELAY, /* Poll sent, waiting ReceiveDelay */
150 BT_MESH_LPN_WAIT_UPDATE, /* Waiting for Update or message */
/nrf52832-nimble/rt-thread/components/net/freemodbus/modbus/functions/
H A Dmbfuncholding_m.c95 * @param lTimeOut timeout (-1 will waiting forever)
164 * @param lTimeOut timeout (-1 will waiting forever)
260 * @param lTimeOut timeout (-1 will waiting forever)
352 * @param lTimeOut timeout (-1 will waiting forever)
H A Dmbfunccoils_m.c83 * @param lTimeOut timeout (-1 will waiting forever)
187 * @param lTimeOut timeout (-1 will waiting forever)
280 * @param lTimeOut timeout (-1 will waiting forever)
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/doc/
H A Dsys_arch.txt68 Blocks the thread while waiting for the semaphore to be
75 milliseconds spent waiting for the semaphore to be signaled. If the
134 Number of milliseconds spent waiting or SYS_ARCH_TIMEOUT if there was a
/nrf52832-nimble/rt-thread/components/net/uip/uip/
H A Dpsock.h241 * This macro will block waiting for data and read the data into the
257 * This macro will block waiting for data and read the data into the
346 * arrives when the protosocket is waiting.
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/doc/
H A Dsys_arch.txt67 Blocks the thread while waiting for the semaphore to be
74 milliseconds spent waiting for the semaphore to be signaled. If the
167 Number of milliseconds spent waiting or SYS_ARCH_TIMEOUT if there was a
/nrf52832-nimble/rt-thread/examples/network/
H A Dtcpserver.c77 LOG_I("\nTCPServer Waiting for client on port %d...\n", port); in tcpserv()
90 LOG_I("Waiting for a new connection..."); in tcpserv()
H A Dtcp_server.py12 print 'Waiting for connection...'
/nrf52832-nimble/nordic/nrfx/drivers/src/
H A Dnrfx_qspi.c156 // Waiting for the peripheral to activate in nrfx_qspi_init()
204 // waiting for previous write to complete. in nrfx_qspi_cinstr_xfer()
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/arch/
H A Dsys_arch.c175 /* waiting for initialization done */ in lwip_system_init()
258 * Block the thread while waiting for the semaphore to be signaled
261 * spent waiting for the semaphore to be signaled; If the semaphore isn't signaled
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/arch/
H A Dsys_arch.c184 /* waiting for initialization done */ in lwip_system_init()
269 * Block the thread while waiting for the semaphore to be signaled
272 * spent waiting for the semaphore to be signaled; If the semaphore isn't signaled
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/api/
H A Dsockets.c81 /** counter of how many threads are waiting for this socket using select */
85 /** Description for a task waiting in select */
87 /** Pointer to the next waiting task */
89 /** Pointer to the previous waiting task */
99 /** semaphore to wake up a task waiting for select */
127 /** The global list of tasks waiting for select */
1257 * Processes recvevent (data available) and wakes up tasks waiting for select.
1323 /* noone is waiting for this socket, no need to check select_cb_list */
1328 /* Now decide if anyone is waiting for this socket */
1330 ONLY IF a select was actually waiting. We go through the list the number
[all …]
/nrf52832-nimble/rt-thread/components/dfs/filesystems/uffs/src/inc/uffs/
H A Duffs_badblock.h66 /** put a new block to the bad block waiting list */

1234567