Home | History | Annotate | Download | only in core

Lines Matching defs:thread

4 #include <base/threading/thread.h>
12 #include "osi/include/thread.h"
18 thread_t* thread;
56 thread = thread_new("performance test thread");
57 thread_post(thread, run_message_loop, nullptr);
64 thread_free(thread);
65 thread = nullptr;
102 thread = thread_new("queue performance test thread");
104 fixed_queue_register_dequeue(bt_msg_queue, thread_get_reactor(thread),
122 LOG(INFO) << "Reactor thread took " << duration.count() << "ms for "
128 thread_free(thread);
129 thread = nullptr;