Home
last modified time | relevance | path

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

/f-stack/dpdk/examples/performance-thread/common/
H A Dlthread_api.h84 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 Dlthread_cond.c39 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 Dlthread_cond.h18 struct lthread_cond { struct
H A Dcommon.mk19 SRCS-y += lthread.c lthread_sched.c lthread_cond.c lthread_tls.c lthread_mutex.c lthread_diag.c ctx…
H A Dlthread_diag_api.h292 lthread_cond_diag_ref(struct lthread_cond *c);
H A Dlthread_int.h35 struct lthread_cond;
H A Dlthread_sched.c153 sizeof(struct lthread_cond), in _lthread_sched_alloc_resources()
/f-stack/dpdk/examples/performance-thread/pthread_shim/
H A Dpthread_shim.c305 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 Dmeson.build26 '../common/lthread_cond.c',
/f-stack/dpdk/examples/performance-thread/l3fwd-thread/
H A Dmeson.build25 '../common/lthread_cond.c',
H A Dmain.c594 struct lthread_cond *ready[RTE_MAX_LCORE];
611 struct lthread_cond **ready;
2023 struct lthread_cond *ready; in lthread_tx_per_ring()