source: rtems/testsuites/samples/iostream/system.h @ 16b1599f

4.115
Last change on this file since 16b1599f was 558a5f48, checked in by Chris Johns <chrisj@…>, on 06/02/10 at 00:47:15

2010-06-02 Chris Johns <chrisj@…>

  • fileio/init.c: Update to new mount API.
  • iostream/init.cc: Hack to work around confdefs.h in C++.
  • iostream/system.h: Add comment about base miniIMFS.
  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[e12ba0e]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-1999.
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 <rtems.h>
17
18/* configuration information */
19
20#include <bsp.h> /* for device driver prototypes */
21
[b091cde]22/* NOTICE: the clock driver is explicitly disabled */
23#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
[e12ba0e]24#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
[bbfe59b]25#define CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY TRUE
[e12ba0e]26
27#define CONFIGURE_MAXIMUM_TASKS            1
28
[dd0e6bf]29#define CONFIGURE_MAXIMUM_SEMAPHORES       5
30
[e12ba0e]31#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
[bbfe59b]32#define CONFIGURE_INIT_TASK_STACK_SIZE    (RTEMS_MINIMUM_STACK_SIZE * 2)
33#define CONFIGURE_EXTRA_TASK_STACKS       RTEMS_MINIMUM_STACK_SIZE
[e12ba0e]34
[558a5f48]35/* Only remove when this macro is removed from confdefs.h. It tests it. */
[e12ba0e]36#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
37
38#include <rtems/confdefs.h>
39
40/* end of include file */
Note: See TracBrowser for help on using the repository browser.