summaryrefslogtreecommitdiff
path: root/conform/data/threads.h-data
blob: bb5ca7552445fda1a8f7b3fa031a96b954e44755 (plain)
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
#if defined ISO11

constant thrd_success
constant thrd_busy
constant thrd_error
constant thrd_nomem
constant thrd_timedout

constant mtx_plain
constant mtx_recursive
constant mtx_timed

type thrd_t
type thrd_start_t
type mtx_t

function int thrd_create (thrd_t*, thrd_start_t, void*)
function int thrd_equal (thrd_t, thrd_t)
function thrd_t thrd_current (void)
function int thrd_sleep (const struct timespec*, struct timespec*)
function void thrd_exit (int)
function int thrd_detach (thrd_t)
function int thrd_join (thrd_t, int*)
function void thrd_yield (void)

function int mtx_init (mtx_t*, int)
function int mtx_lock (mtx_t*)
function int mtx_timedlock (mtx_t*, const struct timespec*)
function int mtx_trylock (mtx_t*)
function int mtx_unlock (mtx_t*)
function void mtx_destroy (mtx_t*)

#include "time.h-data"

#endif