Go to the documentation of this file.    5 #ifndef _RTE_PER_LCORE_H_     6 #define _RTE_PER_LCORE_H_    32 #define RTE_DEFINE_PER_LCORE(type, name)            \    33     __thread __typeof__(type) per_lcore_##name    38 #define RTE_DECLARE_PER_LCORE(type, name)           \    39     extern __thread __typeof__(type) per_lcore_##name    44 #define RTE_PER_LCORE(name) (per_lcore_##name)