mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 11:43:03 +02:00
23 lines
659 B
C
23 lines
659 B
C
#ifndef _THREAD_H_
|
|
#define _THREAD_H_
|
|
typedef void thread_t;
|
|
thread_t *thread_create(void (*thread_rout)(void *param), void *param);
|
|
void thread_kill(thread_t *handle);
|
|
|
|
typedef void event_t;
|
|
event_t *thread_create_event();
|
|
void thread_set_event(event_t *event);
|
|
void thread_reset_event(event_t *_event);
|
|
int thread_wait_event(event_t *event, int timeout);
|
|
void thread_destroy_event(event_t *_event);
|
|
|
|
typedef void mutex_t;
|
|
mutex_t *thread_create_mutex(void);
|
|
void thread_lock_mutex(mutex_t *mutex);
|
|
void thread_unlock_mutex(mutex_t *mutex);
|
|
void thread_destroy_mutex(mutex_t *mutex);
|
|
|
|
void thread_sleep(int t);
|
|
|
|
#endif /* _THREAD_H_ */
|