3 #include "threads-model.h"
5 /* global "model" object */
9 * User program API functions
11 int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg)
13 struct thread_params params = { start_routine, arg };
14 /* seq_cst is just a 'don't care' parameter */
15 model->switch_to_master(new ModelAction(THREAD_CREATE, std::memory_order_seq_cst, t, (uint64_t)¶ms));
19 int thrd_join(thrd_t t)
22 model->switch_to_master(new ModelAction(THREAD_JOIN, std::memory_order_seq_cst, th, id_to_int(thrd_to_id(t))));
26 /** A no-op, for now */
29 //model->switch_to_master(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, thread_current(), VALUE_NONE));
32 thrd_t thrd_current(void)
34 return thread_current()->get_thrd_t();