From a7f4c5a1ff7edec03583a6345337553ea25cbc6f Mon Sep 17 00:00:00 2001 From: Mark Johannes Date: Mon, 12 Aug 1996 21:51:44 +0000 Subject: system.h: added protoypes for task and task2, added mutex id, and task ids --- c/src/tests/psxtests/psx10/system.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'c/src/tests') diff --git a/c/src/tests/psxtests/psx10/system.h b/c/src/tests/psxtests/psx10/system.h index cc90d48945..0344f6c8de 100644 --- a/c/src/tests/psxtests/psx10/system.h +++ b/c/src/tests/psxtests/psx10/system.h @@ -24,7 +24,11 @@ void *POSIX_Init( void *argument ); -void *Task_1_through_3( +void *Task_1( + void *argument +); + +void *Task_2( void *argument ); @@ -39,6 +43,8 @@ void *Task_1_through_3( #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 10 +#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 2 + #include /* global variables */ @@ -51,5 +57,8 @@ void *Task_1_through_3( TEST_EXTERN pthread_t Init_id; TEST_EXTERN pthread_t Task_id; +TEST_EXTERN pthread_t Task2_id; +TEST_EXTERN pthread_cond_t Cond1_id; +TEST_EXTERN pthread_mutex_t Mutex_id; /* end of include file */ -- cgit v1.2.3