source: rtems/testsuites/psxtests/psxtime/main.c @ 2e7e636f

4.104.115
Last change on this file since 2e7e636f was 2e7e636f, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/09 at 01:41:16

2009-05-10 Joel Sherrill <joel.sherrill@…>

  • psx01/init.c, psx01/task.c, psx02/init.c, psx02/task.c, psx03/init.c, psx04/init.c, psx04/task1.c, psx04/task3.c, psx05/init.c, psx06/init.c, psx07/init.c, psx08/init.c, psx09/init.c, psx11/task.c, psx12/init.c, psx13/main.c, psx13/test.c, psxbarrier01/test.c, psxcancel/init.c, psxcleanup/psxcleanup.c, psxenosys/init.c, psxmsgq02/init.c, psxtime/main.c, psxtime/test.c, psxtimer01/psxtimer.c, psxtimer02/psxtimer.c: Fix warnings.
  • Property mode set to 100644
File size: 892 bytes
RevLine 
[cd3fb80]1/*
2 *  Simple test program -- simplified version of sample test hello.
3 *
[2e7e636f]4 *  COPYRIGHT (c) 1989-2009.
[cd3fb80]5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[3c48599]9 *  http://www.rtems.com/license/LICENSE.
[cd3fb80]10 *
11 *  $Id$
12 */
13
[66c348cb]14#define CONFIGURE_INIT
[cd3fb80]15
16#include <bsp.h>
[d802489]17#include <tmacros.h>  /* instantiate buffering code if needed */
[cd3fb80]18
19void test_main( void );
[2e7e636f]20rtems_task Init(
21  rtems_task_argument ignored
22);
[cd3fb80]23
24rtems_task Init(
25  rtems_task_argument ignored
26)
27{
28  test_main();
[d802489]29  rtems_test_exit( 0 );
[cd3fb80]30}
31
32/* configuration information */
33
[df49c60]34#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
35#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
36
37#define CONFIGURE_MAXIMUM_TASKS 1
[cd3fb80]38
39#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
40
41#define CONFIGURE_INIT
42
[80450c7]43#include <rtems/confdefs.h>
[cd3fb80]44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.