summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp50/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-21 15:42:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-05-21 15:42:52 +0000
commit8abaa16177ea7de1e9862695285e09bc26e354f2 (patch)
tree1ebd1dbfe24afb3dc8551f7b4e668263c24e5509 /testsuites/sptests/sp50/init.c
parent2009-05-21 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-8abaa16177ea7de1e9862695285e09bc26e354f2.tar.bz2
2009-05-21 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1413/cpukit * Makefile.am, configure.ac: Add test for case where server based timers which reinitiated themselves did not get reinserted onto timer chain. * sp50/.cvsignore, sp50/Makefile.am, sp50/init.c, sp50/sp50.doc, sp50/sp50.scn: New files.
Diffstat (limited to 'testsuites/sptests/sp50/init.c')
-rw-r--r--testsuites/sptests/sp50/init.c92
1 files changed, 92 insertions, 0 deletions
diff --git a/testsuites/sptests/sp50/init.c b/testsuites/sptests/sp50/init.c
new file mode 100644
index 0000000000..36f8476d6e
--- /dev/null
+++ b/testsuites/sptests/sp50/init.c
@@ -0,0 +1,92 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * 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>
+
+volatile int Fired;
+volatile bool timerRan;
+
+rtems_timer_service_routine Timer_Routine( rtems_id id, void *ignored )
+{
+ rtems_status_code sc;
+
+ Fired++;
+ timerRan = true;
+
+ sc = rtems_timer_server_fire_after(
+ id,
+ get_ticks_per_second(),
+ Timer_Routine,
+ NULL
+ );
+}
+
+rtems_task Init(
+ rtems_task_argument argument
+)
+{
+ rtems_status_code sc;
+ rtems_id timer1;
+ struct timespec uptime;
+
+ puts( "\n\n*** TEST 50 ***" );
+
+ sc = rtems_timer_initiate_server(
+ 1,
+ RTEMS_MINIMUM_STACK_SIZE,
+ RTEMS_DEFAULT_ATTRIBUTES
+ );
+ directive_failed( sc, "rtems_timer_initiate_server" );
+
+ sc = rtems_timer_create(rtems_build_name( 'T', 'M', 'R', '1' ), &timer1);
+ directive_failed( sc, "rtems_timer_create" );
+
+ Fired = 0;
+ timerRan = false;
+
+ Timer_Routine(timer1, NULL);
+
+ while (1) {
+ sc = rtems_task_wake_after( 10 );
+ directive_failed( sc, "rtems_task_wake_after" );
+
+ if ( timerRan == true ) {
+ timerRan = false;
+
+ sc = rtems_clock_get_uptime( &uptime );
+ directive_failed( sc, "rtems_clock_get_uptime" );
+
+ printf( "Timer fired at %d\n", uptime.tv_sec );
+ }
+
+ if ( Fired >= 10 ) {
+ puts( "*** END OF TEST 50 ***" );
+ rtems_test_exit( 0 );
+ }
+ /* technically the following is a critical section */
+ }
+}
+
+
+/**************** START OF CONFIGURATION INFORMATION ****************/
+
+#define CONFIGURE_INIT
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MAXIMUM_TASKS 2
+#define CONFIGURE_MAXIMUM_TIMERS 1
+
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#include <rtems/confdefs.h>
+
+/**************** END OF CONFIGURATION INFORMATION ****************/