source: rtems/testsuites/samples/base_mp/system.h @ 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: 955 bytes
RevLine 
[ac7d5ef0]1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
[08311cc3]6 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]7 *  On-Line Applications Research Corporation (OAR).
8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[3e26377b]11 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]12 */
13
[df49c60]14#include <rtems.h>
[ac7d5ef0]15
[3a4ae6c]16/* functions */
[ac7d5ef0]17
[3a4ae6c]18rtems_task Init(
19  rtems_task_argument argument
20);
[ac7d5ef0]21
[3a4ae6c]22rtems_task Application_task(
23  rtems_task_argument argument
24);
[ac7d5ef0]25
[3a4ae6c]26/* configuration information */
[8f71a36]27
[df49c60]28#include <bsp.h> /* for device driver prototypes */
29
30#define CONFIGURE_MP_APPLICATION
[8f71a36]31
[df49c60]32#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
33#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
[8f71a36]34
[df49c60]35#define CONFIGURE_MAXIMUM_TASKS           2
36
[be1c11ed]37#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
38
[3a4ae6c]39/*
40 *  Put the overrides of default configuration parameters here.
41 */
42
[c8fea7a]43#include <rtems/confdefs.h>
[ac7d5ef0]44
45/* end of include file */
Note: See TracBrowser for help on using the repository browser.