Go to the documentation of this file.
34 #ifndef _RTE_PER_LCORE_H_
35 #define _RTE_PER_LCORE_H_
61 #define RTE_DEFINE_PER_LCORE(type, name) \
62 __thread __typeof__(type) per_lcore_##name
67 #define RTE_DECLARE_PER_LCORE(type, name) \
68 extern __thread __typeof__(type) per_lcore_##name
73 #define RTE_PER_LCORE(name) (per_lcore_##name)