15 #include <rte_compat.h> 16 #include <rte_config.h> 26 #define LCORE_ID_ANY UINT32_MAX 28 RTE_DECLARE_PER_LCORE(unsigned, _lcore_id); 33 enum rte_lcore_role_t { 77 static inline unsigned 174 #ifdef RTE_HAS_CPUSET 217 #define RTE_LCORE_FOREACH(i) \ 218 for (i = rte_get_next_lcore(-1, 0, 0); \ 220 i = rte_get_next_lcore(i, 0, 0)) 225 #define RTE_LCORE_FOREACH_WORKER(i) \ 226 for (i = rte_get_next_lcore(-1, 1, 0); \ 228 i = rte_get_next_lcore(i, 1, 0))
void(* rte_lcore_uninit_cb)(unsigned int lcore_id, void *arg)
unsigned int rte_get_main_lcore(void)
unsigned int rte_lcore_count(void)
int rte_lcore_has_role(unsigned int lcore_id, enum rte_lcore_role_t role)
unsigned int rte_socket_count(void)
void rte_lcore_callback_unregister(void *handle)
void rte_thread_unregister(void)
rte_cpuset_t rte_lcore_cpuset(unsigned int lcore_id)
int(* rte_lcore_init_cb)(unsigned int lcore_id, void *arg)
unsigned int rte_get_next_lcore(unsigned int i, int skip_main, int wrap)
unsigned int rte_lcore_to_socket_id(unsigned int lcore_id)
int rte_lcore_iterate(rte_lcore_iterate_cb cb, void *arg)
int(* rte_lcore_iterate_cb)(unsigned int lcore_id, void *arg)
unsigned int rte_socket_id(void)
static unsigned rte_lcore_id(void)
int rte_lcore_to_cpu_id(int lcore_id)
int(* rte_lcore_usage_cb)(unsigned int lcore_id, struct rte_lcore_usage *usage)
int rte_socket_id_by_idx(unsigned int idx)
void * rte_lcore_callback_register(const char *name, rte_lcore_init_cb init, rte_lcore_uninit_cb uninit, void *arg)
int rte_thread_register(void)
int rte_lcore_index(int lcore_id)
void rte_lcore_dump(FILE *f)
int rte_lcore_is_enabled(unsigned int lcore_id)
#define RTE_PER_LCORE(name)
enum rte_lcore_role_t rte_eal_lcore_role(unsigned int lcore_id)
__rte_experimental void rte_lcore_register_usage_cb(rte_lcore_usage_cb cb)