summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx09/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-07 21:27:25 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-07 21:27:25 +0000
commit7e811af1eb23008c83427f6f3b5379741a23b1c0 (patch)
treece17f09d61a1c67a7c0b7df8f015ac5c0db83380 /testsuites/psxtests/psx09/system.h
parent_POSIX_Mutex_From_core_mutex_status: added priority ceiling violation case (diff)
downloadrtems-7e811af1eb23008c83427f6f3b5379741a23b1c0.tar.bz2
basic sporadic server test.
sporadic server with priority ceiling mutex test.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psx09/system.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/testsuites/psxtests/psx09/system.h b/testsuites/psxtests/psx09/system.h
new file mode 100644
index 0000000000..125a3516a0
--- /dev/null
+++ b/testsuites/psxtests/psx09/system.h
@@ -0,0 +1,58 @@
+/* system.h
+ *
+ * This include file contains information that is included in every
+ * function in the test set.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * $Id$
+ */
+
+/* functions */
+
+#include <pmacros.h>
+
+void *POSIX_Init(
+ void *argument
+);
+
+void *Task_1(
+ void *argument
+);
+
+void *Task_2(
+ void *argument
+);
+
+/* configuration information */
+
+#define CONFIGURE_SPTEST
+
+#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_POSIX_INIT_THREAD_TABLE
+
+#define CONFIGURE_MAXIMUM_POSIX_KEYS 10
+#define CONFIGURE_MAXIMUM_POSIX_MUTEXES 10
+
+#include <confdefs.h>
+
+/* global variables */
+
+#ifdef CONFIGURE_INIT
+#define TEST_EXTERN
+#else
+#define TEST_EXTERN extern
+#endif
+
+TEST_EXTERN pthread_t Init_id;
+TEST_EXTERN pthread_mutex_t Mutex_id;
+
+/* end of include file */