summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsépius <ralf.corsepius@rtems.org>2012-02-22 09:14:37 +0100
committerRalf Corsépius <ralf.corsepius@rtems.org>2012-02-22 09:33:10 +0100
commit99aebcbc86b557621bdb2991c63a742a2f35c184 (patch)
tree55a9be28decc9ee3279775d8205e9ae9656b06d2 /testsuites
parentPR 2015 - LEON3: make SHM driver configurable using weak (diff)
downloadrtems-99aebcbc86b557621bdb2991c63a742a2f35c184.tar.bz2
2012-02-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* nsecs/system.h: New (Split out from nsecs/init.c). * nsecs/init.c: Reflect nsecs/system.h having been split out. * nsecs/empty.c: Include "system.h".
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/samples/nsecs/empty.c2
-rw-r--r--testsuites/samples/nsecs/init.c20
-rw-r--r--testsuites/samples/nsecs/system.h16
3 files changed, 22 insertions, 16 deletions
diff --git a/testsuites/samples/nsecs/empty.c b/testsuites/samples/nsecs/empty.c
index 1713c4557f..0b7772eecd 100644
--- a/testsuites/samples/nsecs/empty.c
+++ b/testsuites/samples/nsecs/empty.c
@@ -12,6 +12,8 @@
#include "config.h"
#endif
+#include "system.h"
+
/* put here hoping it won't get inlined */
void dummy_function_empty_body_to_force_call(void) {}
diff --git a/testsuites/samples/nsecs/init.c b/testsuites/samples/nsecs/init.c
index 9199dd02cc..3431b7656b 100644
--- a/testsuites/samples/nsecs/init.c
+++ b/testsuites/samples/nsecs/init.c
@@ -12,8 +12,6 @@
* $Id$
*/
-#define CONFIGURE_INIT
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -25,6 +23,10 @@
#include <stdlib.h>
#include <unistd.h>
#include <sys/time.h>
+
+#define CONFIGURE_INIT
+#include "system.h"
+
#include <rtems/score/timespec.h> /* _Timespec_Substract */
#include "tmacros.h"
@@ -49,8 +51,6 @@ static void subtract_em(
_Timespec_Subtract( start, stop, t );
}
-/* body below .. hoping it isn't inlined */
-extern void dummy_function_empty_body_to_force_call(void);
rtems_task Init(
rtems_task_argument argument
@@ -143,15 +143,3 @@ rtems_task Init(
exit(0);
}
-
-#include <bsp.h> /* for device driver prototypes */
-
-#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
-#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-
-#define CONFIGURE_MICROSECONDS_PER_TICK 1000
-#define CONFIGURE_MAXIMUM_TASKS 1
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-
-#include <rtems/confdefs.h>
-
diff --git a/testsuites/samples/nsecs/system.h b/testsuites/samples/nsecs/system.h
new file mode 100644
index 0000000000..a9d2ac6c86
--- /dev/null
+++ b/testsuites/samples/nsecs/system.h
@@ -0,0 +1,16 @@
+#ifndef SYSTEM_H
+#define SYSTEM_H
+
+#include <bsp.h> /* for device driver prototypes */
+
+extern void dummy_function_empty_body_to_force_call(void);
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MICROSECONDS_PER_TICK 1000
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#include <rtems/confdefs.h>
+#endif