summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx01/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 20:56:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 20:56:57 +0000
commit2197a2e15fa57bbc7a6f2bfe3d00a75860fbaa82 (patch)
tree309de7990958a9edc3281725d0f799a70121c515 /c/src/tests/psxtests/psx01/system.h
parentadded pthread_exit (diff)
downloadrtems-2197a2e15fa57bbc7a6f2bfe3d00a75860fbaa82.tar.bz2
simple version of test which shows pthread_create, pthread_exit, and exit
are basically working. This test will be enhanced further.
Diffstat (limited to 'c/src/tests/psxtests/psx01/system.h')
-rw-r--r--c/src/tests/psxtests/psx01/system.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/c/src/tests/psxtests/psx01/system.h b/c/src/tests/psxtests/psx01/system.h
index 75433a7ee7..0868489f9a 100644
--- a/c/src/tests/psxtests/psx01/system.h
+++ b/c/src/tests/psxtests/psx01/system.h
@@ -18,13 +18,14 @@
#include <bsp.h>
#include <pthread.h>
+#include <assert.h>
#include <stdio.h>
-void Init(
+void *Init(
void *argument
);
-void Task_1_through_3(
+void *Task_1_through_3(
void *argument
);