summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx10/system.h
diff options
context:
space:
mode:
authorMark Johannes <Mark.Johannes@OARcorp.com>1996-08-14 17:19:03 +0000
committerMark Johannes <Mark.Johannes@OARcorp.com>1996-08-14 17:19:03 +0000
commit87c8fd09edffef14590890d96e9123ebc2dd88a6 (patch)
tree1d0b0f692455e7dc4521b2405ba5b0fffefef475 /c/src/tests/psxtests/psx10/system.h
parenttask3: added to test error case in Wait_support for lock on mutex (diff)
downloadrtems-87c8fd09edffef14590890d96e9123ebc2dd88a6.tar.bz2
system.h: added task3 and changed condition variable config to 1
Diffstat (limited to '')
-rw-r--r--c/src/tests/psxtests/psx10/system.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/c/src/tests/psxtests/psx10/system.h b/c/src/tests/psxtests/psx10/system.h
index 0344f6c8de..eae6660baf 100644
--- a/c/src/tests/psxtests/psx10/system.h
+++ b/c/src/tests/psxtests/psx10/system.h
@@ -32,6 +32,10 @@ void *Task_2(
void *argument
);
+void *Task_3(
+ void *argument
+);
+
/* configuration information */
#define CONFIGURE_SPTEST
@@ -41,7 +45,7 @@ void *Task_2(
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
-#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 10
+#define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 1
#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 2
@@ -58,6 +62,7 @@ void *Task_2(
TEST_EXTERN pthread_t Init_id;
TEST_EXTERN pthread_t Task_id;
TEST_EXTERN pthread_t Task2_id;
+TEST_EXTERN pthread_t Task3_id;
TEST_EXTERN pthread_cond_t Cond1_id;
TEST_EXTERN pthread_mutex_t Mutex_id;