1992-08-04 09:41:02 -03:00
|
|
|
#ifndef _THREAD_H_included
|
|
|
|
#define _THREAD_H_included
|
|
|
|
|
1993-12-20 13:26:34 -04:00
|
|
|
#ifndef PROTO
|
1992-09-11 12:19:27 -03:00
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
1993-12-20 13:26:34 -04:00
|
|
|
#define PROTO(args) args
|
1992-08-04 09:41:02 -03:00
|
|
|
#else
|
1993-12-20 13:26:34 -04:00
|
|
|
#define PROTO(args) ()
|
|
|
|
#endif
|
1992-08-04 09:41:02 -03:00
|
|
|
#endif
|
|
|
|
|
1992-09-11 12:19:27 -03:00
|
|
|
typedef void *type_lock;
|
|
|
|
typedef void *type_sema;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1993-12-20 13:26:34 -04:00
|
|
|
void init_thread PROTO((void));
|
|
|
|
int start_new_thread PROTO((void (*)(void *), void *));
|
|
|
|
void exit_thread PROTO((void));
|
|
|
|
void _exit_thread PROTO((void));
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1993-12-20 13:26:34 -04:00
|
|
|
type_lock allocate_lock PROTO((void));
|
|
|
|
void free_lock PROTO((type_lock));
|
|
|
|
int acquire_lock PROTO((type_lock, int));
|
1992-08-04 09:41:02 -03:00
|
|
|
#define WAIT_LOCK 1
|
|
|
|
#define NOWAIT_LOCK 0
|
1993-12-20 13:26:34 -04:00
|
|
|
void release_lock PROTO((type_lock));
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1993-12-20 13:26:34 -04:00
|
|
|
type_sema allocate_sema PROTO((int));
|
|
|
|
void free_sema PROTO((type_sema));
|
|
|
|
void down_sema PROTO((type_sema));
|
|
|
|
void up_sema PROTO((type_sema));
|
1992-08-17 05:59:08 -03:00
|
|
|
|
1993-12-20 13:26:34 -04:00
|
|
|
void exit_prog PROTO((int));
|
|
|
|
void _exit_prog PROTO((int));
|
1992-08-04 09:41:02 -03:00
|
|
|
|
1992-09-11 12:19:27 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1992-08-04 09:41:02 -03:00
|
|
|
#endif
|