summaryrefslogtreecommitdiffstats
path: root/c/src
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-23 18:55:32 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-23 18:55:32 +0000
commit57fc51c2fe8583b25409d551c7464ac2e165ea3f (patch)
tree60f434dede9b5d130596633f47499df418e1547a /c/src
parentnew files (diff)
downloadrtems-57fc51c2fe8583b25409d551c7464ac2e165ea3f.tar.bz2
new files
Diffstat (limited to 'c/src')
-rw-r--r--c/src/tests/psxtests/psxhdrs/mutex14.c32
-rw-r--r--c/src/tests/psxtests/psxhdrs/mutex15.c32
-rw-r--r--c/src/tests/psxtests/psxhdrs/mutex16.c35
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread24.c36
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread25.c34
-rw-r--r--c/src/tests/psxtests/psxhdrs/pthread26.c31
6 files changed, 200 insertions, 0 deletions
diff --git a/c/src/tests/psxtests/psxhdrs/mutex14.c b/c/src/tests/psxtests/psxhdrs/mutex14.c
new file mode 100644
index 0000000000..abab10965a
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/mutex14.c
@@ -0,0 +1,32 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+
+#ifndef _POSIX_THREAD_PRIO_INHERIT
+#error "rtems is supposed to have pthread_mutexattr_getprotocol"
+#endif
+#ifndef _POSIX_THREAD_PRIO_PROTECT
+#error "rtems is supposed to have pthread_mutexattr_getprotocol"
+#endif
+
+void test( void )
+{
+ pthread_mutexattr_t attribute;
+ int protocol;
+ int result;
+
+ result = pthread_mutexattr_getprotocol( &attribute, &protocol );
+}
diff --git a/c/src/tests/psxtests/psxhdrs/mutex15.c b/c/src/tests/psxtests/psxhdrs/mutex15.c
new file mode 100644
index 0000000000..1e57d8ec7e
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/mutex15.c
@@ -0,0 +1,32 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+
+#ifndef _POSIX_THREAD_PRIO_INHERIT
+#error "rtems is supposed to have pthread_mutex_getprioceiling"
+#endif
+#ifndef _POSIX_THREAD_PRIO_PROTECT
+#error "rtems is supposed to have pthread_mutex_getprioceiling"
+#endif
+
+void test( void )
+{
+ pthread_mutex_t mutex;
+ int prioceiling;
+ int result;
+
+ result = pthread_mutex_getprioceiling( &mutex, &prioceiling );
+}
diff --git a/c/src/tests/psxtests/psxhdrs/mutex16.c b/c/src/tests/psxtests/psxhdrs/mutex16.c
new file mode 100644
index 0000000000..684f177d4b
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/mutex16.c
@@ -0,0 +1,35 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+
+#ifndef _POSIX_THREAD_PRIO_INHERIT
+#error "rtems is supposed to have pthread_mutex_setprioceiling"
+#endif
+#ifndef _POSIX_THREAD_PRIO_PROTECT
+#error "rtems is supposed to have pthread_mutex_setprioceiling"
+#endif
+
+void test( void )
+{
+ pthread_mutex_t mutex;
+ int prioceiling;
+ int oldceiling;
+ int result;
+
+ prioceiling = 0;
+
+ result = pthread_mutex_setprioceiling( &mutex, prioceiling, &oldceiling );
+}
diff --git a/c/src/tests/psxtests/psxhdrs/pthread24.c b/c/src/tests/psxtests/psxhdrs/pthread24.c
new file mode 100644
index 0000000000..3228eb665b
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/pthread24.c
@@ -0,0 +1,36 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+#include <limits.h> /* only for PTHREAD_STACK_MIN */
+
+#ifndef _POSIX_THREADS
+#error "rtems is supposed to have pthread_setstackaddr"
+#endif
+
+#ifndef _POSIX_THREAD_ATTR_STACKADDR
+#error "rtems is supposed to have pthread_setstackaddr"
+#endif
+
+void test( void )
+{
+ pthread_attr_t attribute;
+ void *stackaddr;
+ int result;
+
+ stackaddr = NULL;
+
+ result = pthread_attr_setstackaddr( &attribute, stackaddr );
+}
diff --git a/c/src/tests/psxtests/psxhdrs/pthread25.c b/c/src/tests/psxtests/psxhdrs/pthread25.c
new file mode 100644
index 0000000000..49a0e81c87
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/pthread25.c
@@ -0,0 +1,34 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+#include <limits.h> /* only for PTHREAD_STACK_MIN */
+
+#ifndef _POSIX_THREADS
+#error "rtems is supposed to have pthread_getstackaddr"
+#endif
+
+#ifndef _POSIX_THREAD_ATTR_STACKADDR
+#error "rtems is supposed to have pthread_getstackaddr"
+#endif
+
+void test( void )
+{
+ pthread_attr_t attribute;
+ void *stackaddr;
+ int result;
+
+ result = pthread_attr_getstackaddr( &attribute, &stackaddr );
+}
diff --git a/c/src/tests/psxtests/psxhdrs/pthread26.c b/c/src/tests/psxtests/psxhdrs/pthread26.c
new file mode 100644
index 0000000000..2c79f566a4
--- /dev/null
+++ b/c/src/tests/psxtests/psxhdrs/pthread26.c
@@ -0,0 +1,31 @@
+/*
+ * This test file is used to verify that the header files associated with
+ * the callout are correct.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996.
+ * 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$
+ */
+
+#include <pthread.h>
+
+#ifndef _POSIX_THREADS
+#error "rtems is supposed to have pthread_join"
+#endif
+
+void test( void )
+{
+ pthread_t thread;
+ void *value_ptr;
+ int status;
+
+ thread = 0;
+
+ status = pthread_join( thread, &value_ptr );
+}