summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psxcancel/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:07:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-05 18:07:49 +0000
commit4f234daac3504dbc5bcd7f88315cf7f5ad0626e7 (patch)
tree9f961913788ee2980d75f535b0cb3244564a7044 /c/src/tests/psxtests/psxcancel/system.h
parent2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-4f234daac3504dbc5bcd7f88315cf7f5ad0626e7.tar.bz2
2002-07-05 Joel Sherrill <joel@OARcorp.com>
* psxcancel/Makefile.am, psxcancel/init.c, psxcancel/psxcancel.scn: Updated as part of PR164 which reported problems with the RTEMS implementation of pthread_cancel.
Diffstat (limited to '')
-rw-r--r--c/src/tests/psxtests/psxcancel/system.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/c/src/tests/psxtests/psxcancel/system.h b/c/src/tests/psxtests/psxcancel/system.h
deleted file mode 100644
index 919521ed63..0000000000
--- a/c/src/tests/psxtests/psxcancel/system.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* system.h
- *
- * This include file contains information that is included in every
- * function in the test set.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
- * $Id$
- */
-
-/* functions */
-
-#include <pmacros.h>
-#include <unistd.h>
-#include <errno.h>
-#include <sched.h>
-
-void *POSIX_Init(
- void *argument
-);
-
-void *Task_1_through_3(
- void *argument
-);
-
-/* configuration information */
-
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-
-#define CONFIGURE_MAXIMUM_POSIX_THREADS 2
-
-#define CONFIGURE_POSIX_INIT_THREAD_TABLE
-
-#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_t Task_id;
-
-/* end of include file */