source: rtems/testsuites/sptests/sp74/init.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2 *  COPYRIGHT (c) 2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 */
9
10#ifdef HAVE_CONFIG_H
11#include "config.h"
12#endif
13
14#include <tmacros.h>
15
16
17rtems_task Test_task(
18  rtems_task_argument index
19)
20{
21  puts( "Successfully yielded it to higher priority task" );
22
23  puts( "*** END OF SP74 TEST ***" );
24  rtems_test_exit( 0 );
25}
26
27rtems_task Init(
28  rtems_task_argument argument
29)
30{
31  rtems_status_code  status;
32  rtems_id           id;
33
34  puts( "\n\n*** SP74 (YIELD) TEST ***" );
35
36  puts( "Create TA1 at higher priority task" );
37  status = rtems_task_create(
38    rtems_build_name( 'T', 'A', '1', ' ' ),
39    1,
40    RTEMS_MINIMUM_STACK_SIZE,
41    RTEMS_DEFAULT_MODES,
42    RTEMS_DEFAULT_ATTRIBUTES,
43    &id
44  );
45  directive_failed( status, "create 1" );
46
47  status = rtems_task_start( id, Test_task, 1 );
48  directive_failed( status, "start 1" );
49
50  puts( "Yield to TA1" );
51  status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
52  directive_failed( status, "yield" );
53
54  puts( "*** should now get here ***" );
55}
56
57/* configuration information */
58#include <bsp.h> /* for device driver prototypes */
59
60#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
61#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
62
63#define CONFIGURE_MAXIMUM_TASKS           3
64#define CONFIGURE_INIT_TASK_PRIORITY      2
65
66#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
67
68#define CONFIGURE_INIT
69#include <rtems/confdefs.h>
70/* end of file */
Note: See TracBrowser for help on using the repository browser.