summaryrefslogtreecommitdiffstats
path: root/c/src/tests/itrontests/itrontask02/preempt.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-09 23:27:05 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-09 23:27:05 +0000
commite0991809991a2c5547d45881978212d5efc0e1de (patch)
tree3f88b84781cec14fee64157792b9f6adf8abf758 /c/src/tests/itrontests/itrontask02/preempt.c
parentAdded nesting count for suspend/resume. (diff)
downloadrtems-e0991809991a2c5547d45881978212d5efc0e1de.tar.bz2
Merged tests from Task group.
Diffstat (limited to '')
-rw-r--r--c/src/tests/itrontests/itrontask02/preempt.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/c/src/tests/itrontests/itrontask02/preempt.c b/c/src/tests/itrontests/itrontask02/preempt.c
new file mode 100644
index 0000000000..f68247f9a5
--- /dev/null
+++ b/c/src/tests/itrontests/itrontask02/preempt.c
@@ -0,0 +1,30 @@
+/* Preempt_task
+ *
+ * This routine serves as a test task. It verifies the task manager.
+ *
+ * Input parameters:
+ * argument - task argument
+ *
+ * Output parameters: NONE
+ *
+ * COPYRIGHT (c) 1989-1998.
+ * On-Line Applications Research Corporation (OAR).
+ * Copyright assigned to U.S. Government, 1994.
+ *
+ * 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$
+ */
+#include <assert.h>
+#include "system.h"
+
+void Preempt_task()
+{
+ puts( "PREEMPT - ext_tsk - going to DORMANT state" );
+ ext_tsk( );
+
+ puts( "ext_tsk of RTEMS_PREEMPT" );
+ assert(0);
+}