summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spclock_err01/delay.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spclock_err01/delay.c')
-rw-r--r--testsuites/sptests/spclock_err01/delay.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/testsuites/sptests/spclock_err01/delay.c b/testsuites/sptests/spclock_err01/delay.c
new file mode 100644
index 0000000000..246994130f
--- /dev/null
+++ b/testsuites/sptests/spclock_err01/delay.c
@@ -0,0 +1,29 @@
+/* Delayed_routine
+ *
+ * This routine is used as the timer routine for Timer Manager tests.
+ *
+ * Input parameters:
+ * ignored - this parameter is ignored
+ *
+ * Output parameters: NONE
+ *
+ * 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.rtems.com/license/LICENSE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "system.h"
+
+rtems_timer_service_routine Delayed_routine(
+ rtems_id ignored_id,
+ void *ignored_address
+)
+{
+}