From 318ac690297b9f730ec2c1ade3e658445ea505ea Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 23 May 1996 19:23:54 +0000 Subject: new files --- c/src/tests/psxtests/psxhdrs/pthread32.c | 35 ++++++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread33.c | 25 +++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread34.c | 31 ++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread35.c | 32 +++++++++++++++++++++++++++++ c/src/tests/psxtests/psxhdrs/pthread36.c | 29 ++++++++++++++++++++++++++ 5 files changed, 152 insertions(+) create mode 100644 c/src/tests/psxtests/psxhdrs/pthread32.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread33.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread34.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread35.c create mode 100644 c/src/tests/psxtests/psxhdrs/pthread36.c (limited to 'c/src') diff --git a/c/src/tests/psxtests/psxhdrs/pthread32.c b/c/src/tests/psxtests/psxhdrs/pthread32.c new file mode 100644 index 0000000000..d9ad95524d --- /dev/null +++ b/c/src/tests/psxtests/psxhdrs/pthread32.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_THREADS +#error "rtems is supposed to have pthread_cleanup_push" +#endif + +void cleanup_routine( + void *argument +) +{ +} + +void test( void ) +{ + int argument; + + argument = 0; + + pthread_cleanup_push( cleanup_routine, &argument ); +} diff --git a/c/src/tests/psxtests/psxhdrs/pthread33.c b/c/src/tests/psxtests/psxhdrs/pthread33.c new file mode 100644 index 0000000000..ad53330492 --- /dev/null +++ b/c/src/tests/psxtests/psxhdrs/pthread33.c @@ -0,0 +1,25 @@ +/* + * 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_cleanup_pop" +#endif + +void test( void ) +{ + pthread_cleanup_pop( 1 ); +} diff --git a/c/src/tests/psxtests/psxhdrs/pthread34.c b/c/src/tests/psxtests/psxhdrs/pthread34.c new file mode 100644 index 0000000000..d946ab517e --- /dev/null +++ b/c/src/tests/psxtests/psxhdrs/pthread34.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_THREAD_CPUTIME +#error "rtems is supposed to have pthread_getcpuclockid" +#endif + +void test( void ) +{ + pthread_t thread; + clockid_t clock_id; + int result; + + thread = 0; + + result = pthread_getcpuclockid( thread, &clock_id ); +} diff --git a/c/src/tests/psxtests/psxhdrs/pthread35.c b/c/src/tests/psxtests/psxhdrs/pthread35.c new file mode 100644 index 0000000000..4e68da4c2e --- /dev/null +++ b/c/src/tests/psxtests/psxhdrs/pthread35.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_CPUTIME +#error "rtems is supposed to have pthread_attr_setcputime" +#endif + +void test( void ) +{ + pthread_attr_t attr; + int clock_allowed; + int result; + + clock_allowed = CLOCK_ALLOWED; + clock_allowed = CLOCK_DISALLOWED; + + result = pthread_attr_setcputime( &attr, clock_allowed ); +} diff --git a/c/src/tests/psxtests/psxhdrs/pthread36.c b/c/src/tests/psxtests/psxhdrs/pthread36.c new file mode 100644 index 0000000000..11e1c170a3 --- /dev/null +++ b/c/src/tests/psxtests/psxhdrs/pthread36.c @@ -0,0 +1,29 @@ +/* + * 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_CPUTIME +#error "rtems is supposed to have pthread_attr_getcputime" +#endif + +void test( void ) +{ + pthread_attr_t attr; + int clock_allowed; + int result; + + result = pthread_attr_getcputime( &attr, &clock_allowed ); +} -- cgit v1.2.3