Home
last modified time | relevance | path

Searched refs:semaphore_id (Results 1 – 4 of 4) sorted by relevance

/ThreadX-v6.4.1/utility/benchmarks/thread_metric/
Dtm_porting_layer_template.c104 int tm_semaphore_create(int semaphore_id) in tm_semaphore_create() argument
112 int tm_semaphore_get(int semaphore_id) in tm_semaphore_get() argument
120 int tm_semaphore_put(int semaphore_id) in tm_semaphore_put() argument
Dtm_api.h87 int tm_semaphore_create(int semaphore_id);
88 int tm_semaphore_get(int semaphore_id);
89 int tm_semaphore_put(int semaphore_id);
Dthread_metric_readme.txt173 int tm_semaphore_create(int semaphore_id);
178 int tm_semaphore_get(int semaphore_id);
183 int tm_semaphore_put(int semaphore_id);
/ThreadX-v6.4.1/utility/benchmarks/thread_metric/threadx_example/
Dtm_porting_layer_threadx.c270 int tm_semaphore_create(int semaphore_id) in tm_semaphore_create() argument
277 status = tx_semaphore_create(&tm_semaphore_array[semaphore_id], "Thread-Metric test", 1); in tm_semaphore_create()
289 int tm_semaphore_get(int semaphore_id) in tm_semaphore_get() argument
296 status = tx_semaphore_get(&tm_semaphore_array[semaphore_id], TX_NO_WAIT); in tm_semaphore_get()
308 int tm_semaphore_put(int semaphore_id) in tm_semaphore_put() argument
315 status = tx_semaphore_put(&tm_semaphore_array[semaphore_id]); in tm_semaphore_put()