summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx04
diff options
context:
space:
mode:
authorMark Johannes <Mark.Johannes@OARcorp.com>1996-08-08 18:50:39 +0000
committerMark Johannes <Mark.Johannes@OARcorp.com>1996-08-08 18:50:39 +0000
commit77597ddd32ddd7a8044242b6dd4b8a40fa17f328 (patch)
tree2c70e5f790611c25f90a9da0bc2d989d61ce059c /testsuites/psxtests/psx04
parentSignal_info_handler: added multiple signal cases to finish out the test (diff)
downloadrtems-77597ddd32ddd7a8044242b6dd4b8a40fa17f328.tar.bz2
Added task2 and task3 prototypes and ids
Diffstat (limited to 'testsuites/psxtests/psx04')
-rw-r--r--testsuites/psxtests/psx04/system.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/testsuites/psxtests/psx04/system.h b/testsuites/psxtests/psx04/system.h
index 2d0d07b32c..06c39bdf7b 100644
--- a/testsuites/psxtests/psx04/system.h
+++ b/testsuites/psxtests/psx04/system.h
@@ -22,7 +22,15 @@ void *POSIX_Init(
void *argument
);
-void *Task_1_through_3(
+void *Task_1(
+ void *argument
+);
+
+void *Task_2(
+ void *argument
+);
+
+void *Task_3(
void *argument
);
@@ -33,6 +41,8 @@ void *Task_1_through_3(
#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS 5
+
#define CONFIGURE_POSIX_INIT_THREAD_TABLE
#include <confdefs.h>
@@ -46,6 +56,8 @@ void *Task_1_through_3(
#endif
TEST_EXTERN pthread_t Init_id;
-TEST_EXTERN pthread_t Task_id;
+TEST_EXTERN pthread_t Task1_id;
+TEST_EXTERN pthread_t Task2_id;
+TEST_EXTERN pthread_t Task3_id;
/* end of include file */