3 #include "threads-model.h"
6 /* global "model" object */
10 * User program API functions
12 int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg)
14 struct thread_params params = { start_routine, arg };
15 /* seq_cst is just a 'don't care' parameter */
16 model->switch_to_master(new ModelAction(THREAD_CREATE, std::memory_order_seq_cst, t, (uint64_t)¶ms));
20 int thrd_join(thrd_t t)
23 model->switch_to_master(new ModelAction(THREAD_JOIN, std::memory_order_seq_cst, th, id_to_int(thrd_to_id(t))));
27 /** A no-op, for now */
30 model->switch_to_master(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, thread_current(), VALUE_NONE));
33 thrd_t thrd_current(void)
35 return thread_current()->get_thrd_t();