summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp43/system.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 21:53:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-01-29 21:53:04 +0000
commit6e315132619fcd3454a373e9059c3d7f5fba70dc (patch)
tree7efeca4acae1254090b5f379d5177738dc4918f2 /testsuites/sptests/sp43/system.h
parent2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-6e315132619fcd3454a373e9059c3d7f5fba70dc.tar.bz2
2008-01-29 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, sp02/task1.c, sp24/resume.c, sp30/resume.c, sp41/init.c, sp42/init.c: Add new Object Services collection. This changed the name of a few previously public but undocumented services and added a some new services. * sp43/.cvsignore, sp43/Makefile.am, sp43/init.c, sp43/sp43.scn, sp43/system.h: New files.
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/sp43/system.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/testsuites/sptests/sp43/system.h b/testsuites/sptests/sp43/system.h
new file mode 100644
index 0000000000..c007ce5cdf
--- /dev/null
+++ b/testsuites/sptests/sp43/system.h
@@ -0,0 +1,37 @@
+/* system.h
+ *
+ * This include file contains information that is included in every
+ * function in the test set.
+ *
+ * COPYRIGHT (c) 1989-2008.
+ * 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.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#include <tmacros.h>
+
+/* functions */
+
+rtems_task Init(
+ rtems_task_argument argument
+);
+
+/* configuration information */
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_MAXIMUM_TIMERS 1
+#define CONFIGURE_MAXIMUM_SEMAPHORES 1
+
+#include <rtems/confdefs.h>
+
+/* end of include file */