summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp32/init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-05-07 21:57:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-05-07 21:57:43 +0000
commitac9d3cf84dc1b06af601d2ce876790aa4cfcb7ad (patch)
tree02a94b3b7a61ad0fc3b79feb14c0fcd6d91cd563 /testsuites/sptests/sp32/init.c
parent2008-05-07 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ac9d3cf84dc1b06af601d2ce876790aa4cfcb7ad.tar.bz2
2008-05-07 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp32/init.c: Formatting.
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/sp32/init.c50
1 files changed, 24 insertions, 26 deletions
diff --git a/testsuites/sptests/sp32/init.c b/testsuites/sptests/sp32/init.c
index 1b2712ddb3..e415d4534f 100644
--- a/testsuites/sptests/sp32/init.c
+++ b/testsuites/sptests/sp32/init.c
@@ -17,8 +17,8 @@ rtems_task Init (rtems_task_argument ignored);
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
-#define CONFIGURE_MAXIMUM_TASKS 1
-#define CONFIGURE_MAXIMUM_PERIODS 1
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_MAXIMUM_PERIODS 1
#define CONFIGURE_INIT
@@ -27,14 +27,12 @@ rtems_task Init (rtems_task_argument ignored);
rtems_task Init(
rtems_task_argument ignored
) {
- rtems_status_code status;
- rtems_interval timestamps[6],
- wantintervals[5] =
- { 1, 50, 200, 25, 3 };
- rtems_name period_name =
- rtems_build_name('P','E','R','a');
- rtems_id period_id;
- int loopy;
+ rtems_status_code status;
+ rtems_interval timestamps[6],
+ wantintervals[5] = { 1, 50, 200, 25, 3 };
+ rtems_name period_name = rtems_build_name('P','E','R','a');
+ rtems_id period_id;
+ int loopy;
printf("\n\n*** TEST 32 ***\n");
@@ -62,17 +60,17 @@ rtems_task Init(
/* loop through and gather more timestamps */
for (loopy = 1; loopy < 5; loopy++) {
- status = rtems_rate_monotonic_period(
- period_id,
- wantintervals[loopy]
- );
- directive_failed(status, "rate_monotonic_period");
-
- status = rtems_clock_get(
- RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
- &timestamps[loopy]
- );
- directive_failed(status, "clock_get");
+ status = rtems_rate_monotonic_period(
+ period_id,
+ wantintervals[loopy]
+ );
+ directive_failed(status, "rate_monotonic_period");
+
+ status = rtems_clock_get(
+ RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
+ &timestamps[loopy]
+ );
+ directive_failed(status, "clock_get");
}
/* block one last time */
@@ -99,11 +97,11 @@ rtems_task Init(
/* tabulate and print results */
for (loopy = 0; loopy < 5; loopy++) {
- printf(
- "period %d: measured %d tick(s), wanted %d\n",
- loopy, timestamps[loopy+1] - timestamps[loopy],
- wantintervals[loopy]
- );
+ printf(
+ "period %d: measured %d tick(s), wanted %d\n",
+ loopy, timestamps[loopy+1] - timestamps[loopy],
+ wantintervals[loopy]
+ );
}
/* the end */