-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibthreads.cc
41 lines (35 loc) · 972 Bytes
/
libthreads.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include "threads.h"
#include "common.h"
#include "threads-model.h"
#include "action.h"
/* global "model" object */
#include "model.h"
/*
* User program API functions
*/
int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg)
{
createModelIfNotExist();
struct thread_params params = { start_routine, arg };
/* seq_cst is just a 'don't care' parameter */
model->switch_thread(new ModelAction(THREAD_CREATE, std::memory_order_seq_cst, t, (uint64_t)¶ms));
return 0;
}
int thrd_join(thrd_t t)
{
createModelIfNotExist();
Thread *th = t.priv;
model->switch_thread(new ModelAction(THREAD_JOIN, std::memory_order_seq_cst, th, id_to_int(thrd_to_id(t))));
return 0;
}
/** A no-op, for now */
void thrd_yield(void)
{
createModelIfNotExist();
model->switch_thread(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, thread_current(), VALUE_NONE));
}
thrd_t thrd_current(void)
{
createModelIfNotExist();
return thread_current()->get_thrd_t();
}