summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spsimplesched03/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-16 16:33:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-03-16 16:33:04 +0000
commit5bbc204431e8b2fbec5b06e38434031ed92e1d5c (patch)
tree51570e5b0d54b36bc9285269684a61ccb014d7d9 /testsuites/sptests/spsimplesched03/init.c
parent2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com> (diff)
downloadrtems-5bbc204431e8b2fbec5b06e38434031ed92e1d5c.tar.bz2
2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>
PR 1743/cpu * Makefile.am, configure.ac, spsize/size.c: Add Simple Priority Scheduler as complement to existing Deterministic Priority Scheduler. This scheduler serves both as an example and as a lighter weight implementation for smaller systems. * spsimplesched01/.cvsignore, spsimplesched01/Makefile.am, spsimplesched01/init.c, spsimplesched01/spsimplesched01.doc, spsimplesched01/spsimplesched01.scn, spsimplesched02/.cvsignore, spsimplesched02/Makefile.am, spsimplesched02/init.c, spsimplesched02/spsimplesched02.doc, spsimplesched02/spsimplesched02.scn, spsimplesched03/.cvsignore, spsimplesched03/Makefile.am, spsimplesched03/init.c, spsimplesched03/spsimplesched03.doc, spsimplesched03/spsimplesched03.scn: New files.
Diffstat (limited to 'testsuites/sptests/spsimplesched03/init.c')
-rw-r--r--testsuites/sptests/spsimplesched03/init.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/testsuites/sptests/spsimplesched03/init.c b/testsuites/sptests/spsimplesched03/init.c
new file mode 100644
index 0000000000..2e190c2619
--- /dev/null
+++ b/testsuites/sptests/spsimplesched03/init.c
@@ -0,0 +1,50 @@
+/*
+ * COPYRIGHT (c) 2011.
+ * 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$
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <tmacros.h>
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code status;
+
+ puts( "\n\n*** SIMPLE SCHEDULER 03 TEST ***" );
+
+ puts( "INIT - rtems timer initiate server");
+ status = rtems_timer_initiate_server(
+ RTEMS_TIMER_SERVER_DEFAULT_PRIORITY,
+ RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_DEFAULT_ATTRIBUTES
+ );
+ directive_failed( status, "Timer Initiate Server" );
+
+ /* End the Test */
+ puts( "*** END OF SIMPLE SCHEDULER 03 TEST ***" );
+ rtems_test_exit(0);
+}
+
+/* configuration information */
+#define CONFIGURE_SCHEDULER_SIMPLE
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+#define CONFIGURE_INIT_TASK_PRIORITY 2
+
+#define CONFIGURE_INIT
+#include <rtems/confdefs.h>
+/* end of include file */