Lines Matching refs:name
98 #define K_P4WQ_DEFINE(name, n_threads, stack_sz) \ argument
99 static K_THREAD_STACK_ARRAY_DEFINE(_p4stacks_##name, \
101 static struct k_thread _p4threads_##name[n_threads]; \
102 static struct k_p4wq name; \
104 _init_##name) = { \
107 .threads = _p4threads_##name, \
108 .stacks = &(_p4stacks_##name[0][0]), \
109 .queue = &name, \
125 #define K_P4WQ_ARRAY_DEFINE(name, n_threads, stack_sz, flg) \ argument
126 static K_THREAD_STACK_ARRAY_DEFINE(_p4stacks_##name, \
128 static struct k_thread _p4threads_##name[n_threads]; \
129 static struct k_p4wq name[n_threads]; \
131 _init_##name) = { \
134 .threads = _p4threads_##name, \
135 .stacks = &(_p4stacks_##name[0][0]), \
136 .queue = name, \