Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 11 of 11) sorted by relevance

/ThreadX-v6.4.1/ports_smp/mips32_interaptiv_smp/green/example_build/
Dprobe_interaptiv_3c2v4t.cfg148 set 0:timeout 500 ms
149 set 1:timeout 500 ms
150 set 2:timeout 500 ms
151 set 3:timeout 500 ms
152 set 4:timeout 500 ms
153 set 5:timeout 500 ms
154 set 6:timeout 500 ms
155 set 7:timeout 500 ms
156 set 8:timeout 500 ms
157 set 9:timeout 500 ms
[all …]
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c778 UINT timeout; in ulTaskNotifyTake() local
781 timeout = TX_WAIT_FOREVER; in ulTaskNotifyTake()
783 timeout = (UINT)xTicksToWait; in ulTaskNotifyTake()
813 ret = tx_semaphore_get(&p_task->notification_sem, timeout); in ulTaskNotifyTake()
835 UINT timeout; in xTaskNotifyWait() local
840 timeout = TX_WAIT_FOREVER; in xTaskNotifyWait()
842 timeout = (UINT)xTicksToWait; in xTaskNotifyWait()
868 ret = tx_semaphore_get(&p_task->notification_sem, timeout); in xTaskNotifyWait()
1285 UINT timeout; in xSemaphoreTake() local
1291 timeout = TX_WAIT_FOREVER; in xSemaphoreTake()
[all …]
/ThreadX-v6.4.1/common_smp/src/
Dtx_thread_system_suspend.c139 ULONG timeout; in _tx_thread_system_suspend() local
177 timeout = thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks; in _tx_thread_system_suspend()
180 if (timeout != TX_NO_WAIT) in _tx_thread_system_suspend()
184 if (timeout != TX_WAIT_FOREVER) in _tx_thread_system_suspend()
196 if (timeout > TX_TIMER_ENTRIES) in _tx_thread_system_suspend()
208 expiration_time = (UINT) (timeout - ((ULONG) 1)); in _tx_thread_system_suspend()
987 VOID _tx_thread_system_ni_suspend(TX_THREAD *thread_ptr, ULONG timeout) in _tx_thread_system_ni_suspend() argument
991 thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks = timeout; in _tx_thread_system_ni_suspend()
/ThreadX-v6.4.1/common/src/
Dtx_thread_system_suspend.c102 ULONG timeout; in _tx_thread_system_suspend() local
129 timeout = thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks; in _tx_thread_system_suspend()
132 if (timeout != TX_NO_WAIT) in _tx_thread_system_suspend()
136 if (timeout != TX_WAIT_FOREVER) in _tx_thread_system_suspend()
/ThreadX-v6.4.1/scripts/
Dcmake_bootstrap.sh46 …ctest $parallel --timeout 1000 -O $1.txt -T test --no-compress-output --test-output-size-passed 41…
/ThreadX-v6.4.1/test/smp/cmake/
Drun.sh46 …ctest $parallel --timeout 1000 -O $1.txt -T test --no-compress-output --test-output-size-passed 41…
/ThreadX-v6.4.1/test/tx/cmake/
Drun.sh46 …ctest $parallel --timeout 1000 -O $1.txt -T test --no-compress-output --test-output-size-passed 41…
/ThreadX-v6.4.1/test/ports/
Dazrtos_test_tx_iar_cortex_m4.bat11 @REM --timeout Limits the maximum allowed execution time.
/ThreadX-v6.4.1/docs/
Drevision_history.txt70 … up timeout, added default macro definition for
71 … setting up thread timeout pointer, and added
161 … added macro for setting up the thread timeout, and
202 not accessed after timeout unless
216 is not accessed after timeout unless
1116 … change macro, cleared the timeout value to avoid
1117 … a timeout on a completed thread, moved extension
1279 … during timeout processing and optimized message
1349 … default macro definition for setting up timeout,
1351 … thread timeout pointer, and added macros for
[all …]
/ThreadX-v6.4.1/ports_smp/cortex_a7_smp/ac5/example_build/sample_threadx/
Dstartup.s140 ; Set new timeout value for the timer, which clears the interrupt.
142 MCR p15, 0, r0, c14, c2, 0 ; Setup timeout value (CNTP_TVAL)
/ThreadX-v6.4.1/common_smp/inc/
Dtx_thread.h139 VOID _tx_thread_system_ni_suspend(TX_THREAD *thread_ptr, ULONG timeout);