Files
rtems/testsuites/sptests/sp32/init.c
Ralf Corsepius e806450393 * sp01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
* sp02/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp03/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp04/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp05/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp06/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp07/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp08/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp09/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp11/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp12/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp13/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp14/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp15/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp16/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp17/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp19/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp20/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp21/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp22/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp23/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp24/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp25/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp26/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp27/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp28/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp29/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp30/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp31/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* sp32/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* spfatal/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
	* spsize/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
2004-04-01 15:16:30 +00:00

113 lines
2.7 KiB
C

/* spmonotonic -- sanity check the rate monotonic manager
*
* 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$
*/
#define TEST_INIT
#include <tmacros.h> /* includes bsp.h, stdio, etc... */
/* prototype */
rtems_task Init (rtems_task_argument ignored);
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_MAXIMUM_PERIODS 1
#define CONFIGURE_INIT
#include <rtems/confdefs.h>
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;
printf("\n\n*** TEST 32 ***\n");
/* create period */
status = rtems_rate_monotonic_create(
period_name,
&period_id
);
directive_failed(status, "rate_monotonic_create");
/* start period with initial value */
status = rtems_rate_monotonic_period(
period_id,
wantintervals[0]
);
directive_failed(status, "rate_monotonic_period");
/* get our first timestamp */
status = rtems_clock_get(
RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
&timestamps[0]
);
directive_failed(status, "clock_get");
/* 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");
}
/* block one last time */
status = rtems_rate_monotonic_period(
period_id,
1
);
directive_failed(status, "rate_monotonic_period");
/* get one last timestamp */
status = rtems_clock_get(
RTEMS_CLOCK_GET_TICKS_SINCE_BOOT,
&timestamps[loopy]
);
directive_failed(status, "clock_get");
/* cancel the period */
status = rtems_rate_monotonic_cancel(period_id);
directive_failed(status, "rate_monotonic_cancel");
/* delete it */
status = rtems_rate_monotonic_delete(period_id);
directive_failed(status, "rate_monotonic_delete");
/* 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]
);
}
/* the end */
printf("*** END OF TEST SP32 ***\n");
exit(0);
}