Home
last modified time | relevance | path

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

/ThreadX-v6.2.1/utility/benchmarks/thread_metric/
Dtm_porting_layer_template.c105 int tm_semaphore_create(int semaphore_id) in tm_semaphore_create() argument
113 int tm_semaphore_get(int semaphore_id) in tm_semaphore_get() argument
121 int tm_semaphore_put(int semaphore_id) in tm_semaphore_put() argument
Dtm_api.h88 int tm_semaphore_create(int semaphore_id);
89 int tm_semaphore_get(int semaphore_id);
90 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.2.1/utility/benchmarks/thread_metric/threadx_example/
Dtm_porting_layer_threadx.c271 int tm_semaphore_create(int semaphore_id) in tm_semaphore_create() argument
278 status = tx_semaphore_create(&tm_semaphore_array[semaphore_id], "Thread-Metric test", 1); in tm_semaphore_create()
290 int tm_semaphore_get(int semaphore_id) in tm_semaphore_get() argument
297 status = tx_semaphore_get(&tm_semaphore_array[semaphore_id], TX_NO_WAIT); in tm_semaphore_get()
309 int tm_semaphore_put(int semaphore_id) in tm_semaphore_put() argument
316 status = tx_semaphore_put(&tm_semaphore_array[semaphore_id]); in tm_semaphore_put()