Lines Matching refs:thread_info_t
44 } thread_info_t; typedef
96 thread_info_t e = {}; in thread_callback()
121 thread_info_t* temp; in thread_callback()
122 list_for_every_entry (&thread_list, temp, thread_info_t, node) { in thread_callback()
136 thread_info_t* new_entry = malloc(sizeof(thread_info_t)); in thread_callback()
151 thread_info_t* e; in sort_threads()
152 while ((e = list_remove_head_type(&thread_list, thread_info_t, node))) { in sort_threads()
153 thread_info_t* t; in sort_threads()
156 list_for_every_entry (&new_list, t, thread_info_t, node) { in sort_threads()
175 thread_info_t* e; in print_threads()
180 list_for_every_entry (&thread_list, e, thread_info_t, node) { in print_threads()
318 thread_info_t* e; in main()
319 list_for_every_entry (&thread_list, e, thread_info_t, node) { in main()
338 thread_info_t* temp; in main()
339 list_for_every_entry_safe (&thread_list, e, temp, thread_info_t, node) { in main()