2022-06-11 04:49:07 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-02-18 23:27:59 +00:00
|
|
|
// Note(bumbread): some of the macros and types are platform-dependent
|
|
|
|
// and can be found in os_win/ subfolder.
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include "os_win/threads_types.h"
|
|
|
|
#else
|
|
|
|
#error "Not implemented"
|
|
|
|
#endif
|
|
|
|
|
2023-02-15 07:37:23 +00:00
|
|
|
// 7.28.1 p.3: Macros
|
2022-07-31 09:11:28 +00:00
|
|
|
|
2022-06-11 04:49:07 +00:00
|
|
|
#define TSS_DTOR_ITERATIONS 32
|
|
|
|
|
2023-02-15 07:37:23 +00:00
|
|
|
// TODO(bumbread): check the spec for whether thread_local needs to be declared
|
|
|
|
// in threads.h
|
|
|
|
#define thread_local _Thread_local
|
|
|
|
|
|
|
|
// 7.28.1 p.4: Types
|
|
|
|
|
2022-08-04 09:47:38 +00:00
|
|
|
#if !defined(_timespec_defined)
|
2023-02-15 07:37:23 +00:00
|
|
|
#define _timespec_defined
|
|
|
|
typedef unsigned long long time_t;
|
|
|
|
struct timespec {
|
|
|
|
time_t tv_sec;
|
|
|
|
long tv_nsec;
|
|
|
|
};
|
2022-08-04 09:47:38 +00:00
|
|
|
#endif
|
|
|
|
|
2022-06-28 02:08:03 +00:00
|
|
|
typedef void(*tss_dtor_t) (void*);
|
|
|
|
typedef int (*thrd_start_t)(void*);
|
2023-02-15 07:37:23 +00:00
|
|
|
|
|
|
|
// 7.28.1 p.5: Enumeration constants
|
2022-06-11 04:49:07 +00:00
|
|
|
|
|
|
|
enum {
|
2022-06-28 02:08:03 +00:00
|
|
|
mtx_plain = 0,
|
|
|
|
mtx_recursive = 1,
|
|
|
|
mtx_timed = 2,
|
2022-06-11 04:49:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2023-01-27 06:50:37 +00:00
|
|
|
thrd_success,
|
|
|
|
thrd_timedout,
|
|
|
|
thrd_busy,
|
|
|
|
thrd_error,
|
|
|
|
thrd_nomem
|
2022-06-11 04:49:07 +00:00
|
|
|
};
|
|
|
|
|
2023-02-15 07:37:23 +00:00
|
|
|
// Thread functions
|
2022-06-11 04:49:07 +00:00
|
|
|
thrd_t thrd_current(void);
|
2022-06-28 02:08:03 +00:00
|
|
|
int thrd_create (thrd_t *thr, thrd_start_t func, void *arg);
|
|
|
|
int thrd_detach (thrd_t thr);
|
|
|
|
int thrd_equal (thrd_t thr0, thrd_t thr1);
|
|
|
|
int thrd_join (thrd_t thr, int *res);
|
|
|
|
void thrd_yield (void);
|
2023-01-27 06:50:37 +00:00
|
|
|
int thrd_sleep(
|
2022-06-28 02:08:03 +00:00
|
|
|
const struct timespec *duration,
|
|
|
|
struct timespec *remaining
|
|
|
|
);
|
2022-08-04 09:47:38 +00:00
|
|
|
_Noreturn void thrd_exit(int res);
|
2022-06-28 02:08:03 +00:00
|
|
|
|
2023-02-15 07:37:23 +00:00
|
|
|
// Mutex functions
|
|
|
|
void mtx_destroy (mtx_t *mtx);
|
|
|
|
int mtx_init (mtx_t *mtx, int type);
|
|
|
|
int mtx_unlock (mtx_t *mtx);
|
|
|
|
int mtx_trylock (mtx_t *mtx);
|
|
|
|
int mtx_lock (mtx_t *mtx);
|
|
|
|
int mtx_timedlock(
|
|
|
|
mtx_t *restrict mtx,
|
|
|
|
const struct timespec *restrict ts
|
|
|
|
);
|
|
|
|
|
|
|
|
// Thread-local storage functions
|
2022-06-28 02:08:03 +00:00
|
|
|
int tss_create(tss_t *key, tss_dtor_t dtor);
|
|
|
|
void tss_delete(tss_t key);
|
|
|
|
void *tss_get (tss_t key);
|
|
|
|
int tss_set (tss_t key, void *val);
|
2023-02-15 07:37:23 +00:00
|
|
|
|
|
|
|
// Condition functions
|
|
|
|
int cnd_init (cnd_t *cond);
|
|
|
|
int cnd_broadcast(cnd_t *cond);
|
|
|
|
void cnd_destroy (cnd_t *cond);
|
|
|
|
int cnd_signal (cnd_t *cond);
|
|
|
|
int cnd_wait (cnd_t *cond, mtx_t *mtx);
|
2023-02-20 23:15:02 +00:00
|
|
|
int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts);
|
2023-02-15 07:37:23 +00:00
|
|
|
|
|
|
|
// Call once
|
|
|
|
void call_once(once_flag *flag, void (*func)(void));
|