summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx10/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx10/system.h')
-rw-r--r--testsuites/psxtests/psx10/system.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx10/system.h b/testsuites/psxtests/psx10/system.h
index 0344f6c8de..eae6660baf 100644
--- a/testsuites/psxtests/psx10/system.h
+++ b/testsuites/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;