summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/base_mp/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/samples/base_mp/system.h')
-rw-r--r--testsuites/samples/base_mp/system.h32
1 files changed, 23 insertions, 9 deletions
diff --git a/testsuites/samples/base_mp/system.h b/testsuites/samples/base_mp/system.h
index 38b20afb5c..ec07193b72 100644
--- a/testsuites/samples/base_mp/system.h
+++ b/testsuites/samples/base_mp/system.h
@@ -14,19 +14,33 @@
* $Id$
*/
-#include <rtems.h>
-#include <bsp.h>
-#include <stdio.h>
-#include <libcsupport.h>
+#include <tmacros.h>
-/* Miscellaneous */
+/* functions */
-#define EXTERN extern /* external definition */
+rtems_task Init(
+ rtems_task_argument argument
+);
-/* macros */
+rtems_task Application_task(
+ rtems_task_argument argument
+);
-/* structures */
+/* configuration information */
+
+#define CONFIGURE_MPTEST
+
+#define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER
+
+/*
+ * Put the overrides of default configuration parameters here.
+ */
+
+#include <confdefs.h>
-#include "gvar.h"
+/* variables */
+TEST_EXTERN rtems_id Global_variable; /* example global variable */
+
/* end of include file */