summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx01/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:06:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:06:47 +0000
commit0252200299d1e00a6664c1661939d418dd54cb53 (patch)
tree125f458eccad867838db1295551ef60b91d6780e /c/src/tests/psxtests/psx01/system.h
parentAdded default POSIX API configuration table. (diff)
downloadrtems-0252200299d1e00a6664c1661939d418dd54cb53.tar.bz2
Gutted test of rtems api calls and added comments to indicate what the test
should do in their place. It now compiles and links.
Diffstat (limited to 'c/src/tests/psxtests/psx01/system.h')
-rw-r--r--c/src/tests/psxtests/psx01/system.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/c/src/tests/psxtests/psx01/system.h b/c/src/tests/psxtests/psx01/system.h
index 08e71c4bb8..75433a7ee7 100644
--- a/c/src/tests/psxtests/psx01/system.h
+++ b/c/src/tests/psxtests/psx01/system.h
@@ -14,16 +14,18 @@
* $Id$
*/
-#include <tmacros.h>
-
/* functions */
-rtems_task Init(
- rtems_task_argument argument
+#include <bsp.h>
+#include <pthread.h>
+#include <stdio.h>
+
+void Init(
+ void *argument
);
-rtems_task Task_1_through_3(
- rtems_task_argument argument
+void Task_1_through_3(
+ void *argument
);
/* configuration information */
@@ -33,11 +35,12 @@ rtems_task Task_1_through_3(
#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_HAS_OWN_INIT_TASK_TABLE
+#define CONFIGURE_INIT_TASK_TABLE_SIZE 0
+#define CONFIGURE_INIT_TASK_TABLE NULL
+
#include <confdefs.h>
/* global variables */
-TEST_EXTERN rtems_id Task_id[ 4 ]; /* array of task ids */
-TEST_EXTERN rtems_name Task_name[ 4 ]; /* array of task names */
-
/* end of include file */