summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorMark Johannes <Mark.Johannes@OARcorp.com>1996-08-12 21:51:44 +0000
committerMark Johannes <Mark.Johannes@OARcorp.com>1996-08-12 21:51:44 +0000
commita7f4c5a1ff7edec03583a6345337553ea25cbc6f (patch)
tree23d9673783b464272e2bca4cb073c90fb5fb23ca /testsuites
parentInit.c: added cases for signal, wait and broadcast (diff)
downloadrtems-a7f4c5a1ff7edec03583a6345337553ea25cbc6f.tar.bz2
system.h: added protoypes for task and task2, added mutex id, and task ids
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/psxtests/psx10/system.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx10/system.h b/testsuites/psxtests/psx10/system.h
index cc90d48945..0344f6c8de 100644
--- a/testsuites/psxtests/psx10/system.h
+++ b/testsuites/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 <confdefs.h>
/* 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 */