From 57fc51c2fe8583b25409d551c7464ac2e165ea3f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 23 May 1996 18:55:32 +0000 Subject: new files --- c/src/tests/psxtests/psxhdrs/mutex14.c | 32 ++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/mutex15.c | 32 ++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/mutex16.c | 35 +++++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread24.c | 36 ++++++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread25.c | 34 ++++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread26.c | 31 +++++++++++++++++++++++++++ 6 files changed, 200 insertions(+) create mode 100644 c/src/tests/psxtests/psxhdrs/mutex14.c create mode 100644 c/src/tests/psxtests/psxhdrs/mutex15.c create mode 100644 c/src/tests/psxtests/psxhdrs/mutex16.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread24.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread25.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread26.c (limited to 'c/src') 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 + +#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 + +#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 + +#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 +#include /* 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 +#include /* 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 + +#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 ); +} -- cgit v1.2.3