Go to the documentation of this file.
5 #ifndef _CNE_PER_THREAD_H_
6 #define _CNE_PER_THREAD_H_
30 #define CNE_DEFINE_PER_THREAD(type, name) __thread __typeof__(type) per_thread_##name
35 #define CNE_DECLARE_PER_THREAD(type, name) extern __thread __typeof__(type) per_thread_##name
40 #define CNE_PER_THREAD(name) (per_thread_##name)