Implement TLS and spinlocks, fix bug in Windows threads

This commit is contained in:
2024-06-10 22:24:57 +03:00
parent 8939076f94
commit ada9d3ada5
10 changed files with 359 additions and 3 deletions

View File

@@ -22,6 +22,11 @@ struct bh_cond_s
pthread_cond_t handle;
};
struct bh_spinlock_s
{
int handle;
};
int bh_thread_init(bh_thread_t *thread,
bh_task_t *task);