Searched refs:lthread_cond (Results 1 – 11 of 11) sorted by relevance
| /f-stack/dpdk/examples/performance-thread/common/ |
| H A D | lthread_api.h | 84 struct lthread_cond; 709 lthread_cond_init(char *name, struct lthread_cond **c, 726 int lthread_cond_destroy(struct lthread_cond *cond); 746 int lthread_cond_wait(struct lthread_cond *c, uint64_t reserved); 762 int lthread_cond_signal(struct lthread_cond *c); 778 int lthread_cond_broadcast(struct lthread_cond *c);
|
| H A D | lthread_cond.c | 39 lthread_cond_init(char *name, struct lthread_cond **cond, in lthread_cond_init() 42 struct lthread_cond *c; in lthread_cond_init() 75 int lthread_cond_destroy(struct lthread_cond *c) in lthread_cond_destroy() 98 int lthread_cond_wait(struct lthread_cond *c, __rte_unused uint64_t reserved) in lthread_cond_wait() 127 int lthread_cond_signal(struct lthread_cond *c) in lthread_cond_signal() 149 int lthread_cond_broadcast(struct lthread_cond *c) in lthread_cond_broadcast() 179 lthread_cond_diag_ref(struct lthread_cond *c) in lthread_cond_diag_ref()
|
| H A D | lthread_cond.h | 18 struct lthread_cond { struct
|
| H A D | common.mk | 19 SRCS-y += lthread.c lthread_sched.c lthread_cond.c lthread_tls.c lthread_mutex.c lthread_diag.c ctx…
|
| H A D | lthread_diag_api.h | 292 lthread_cond_diag_ref(struct lthread_cond *c);
|
| H A D | lthread_int.h | 35 struct lthread_cond;
|
| H A D | lthread_sched.c | 153 sizeof(struct lthread_cond), in _lthread_sched_alloc_resources()
|
| /f-stack/dpdk/examples/performance-thread/pthread_shim/ |
| H A D | pthread_shim.c | 305 lthread_cond_broadcast(*(struct lthread_cond **)cond); in pthread_cond_broadcast() 321 return lthread_cond_destroy(*(struct lthread_cond **)cond); in pthread_cond_destroy() 329 (struct lthread_cond **)cond, in pthread_cond_init() 337 lthread_cond_signal(*(struct lthread_cond **)cond); in pthread_cond_signal() 356 int rv = lthread_cond_wait(*(struct lthread_cond **)cond, 0); in pthread_cond_wait()
|
| H A D | meson.build | 26 '../common/lthread_cond.c',
|
| /f-stack/dpdk/examples/performance-thread/l3fwd-thread/ |
| H A D | meson.build | 25 '../common/lthread_cond.c',
|
| H A D | main.c | 594 struct lthread_cond *ready[RTE_MAX_LCORE]; 611 struct lthread_cond **ready; 2023 struct lthread_cond *ready; in lthread_tx_per_ring()
|