Lines Matching defs:thread_id
157 thread_is_running(uint32_t thread_id)
161 thread_state = rte_eal_get_lcore_state(thread_id);
176 return thread_is_running(p->thread_id);
232 thread_msg_send_recv(uint32_t thread_id,
235 struct thread *t = &thread[thread_id];
255 thread_pipeline_enable(uint32_t thread_id,
266 if ((thread_id >= RTE_MAX_LCORE) ||
273 t = &thread[thread_id];
278 if (!thread_is_running(thread_id)) {
279 struct thread_data *td = &thread_data[thread_id];
302 p->thread_id = thread_id;
325 rsp = thread_msg_send_recv(thread_id, req);
337 p->thread_id = thread_id;
344 thread_pipeline_disable(uint32_t thread_id,
354 if ((thread_id >= RTE_MAX_LCORE) ||
358 t = &thread[thread_id];
365 if (p->thread_id != thread_id)
368 if (!thread_is_running(thread_id)) {
369 struct thread_data *td = &thread_data[thread_id];
410 rsp = thread_msg_send_recv(thread_id, req);
3080 uint32_t thread_id, i;
3082 thread_id = rte_lcore_id();
3083 t = &thread_data[thread_id];