source: rtems/testsuites/sptests/sp43/system.h @ 6e315132

4.104.114.95
Last change on this file since 6e315132 was 6e315132, checked in by Joel Sherrill <joel.sherrill@…>, on 01/29/08 at 21:53:04

2008-01-29 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, sp02/task1.c, sp24/resume.c, sp30/resume.c, sp41/init.c, sp42/init.c: Add new Object Services collection. This changed the name of a few previously public but undocumented services and added a some new services.
  • sp43/.cvsignore, sp43/Makefile.am, sp43/init.c, sp43/sp43.scn, sp43/system.h: New files.
  • Property mode set to 100644
File size: 840 bytes
RevLine 
[6e315132]1/*  system.h
2 *
3 *  This include file contains information that is included in every
4 *  function in the test set.
5 *
6 *  COPYRIGHT (c) 1989-2008.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#include <tmacros.h>
17
18/* functions */
19
20rtems_task Init(
21  rtems_task_argument argument
22);
23
24/* configuration information */
25
26#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
27#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
28
29#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
30
31#define CONFIGURE_MAXIMUM_TASKS             2
32#define CONFIGURE_MAXIMUM_TIMERS            1
33#define CONFIGURE_MAXIMUM_SEMAPHORES        1
34
35#include <rtems/confdefs.h>
36
37/* end of include file */
Note: See TracBrowser for help on using the repository browser.