source: rtems/testsuites/samples/minimum/init.c @ a645637

4.104.114.95
Last change on this file since a645637 was a645637, checked in by Joel Sherrill <joel.sherrill@…>, on 04/17/08 at 22:46:15

2008-04-17 Joel Sherrill <joel.sherrill@…>

  • fileio/init.c, hello/system.h, minimum/init.c, unlimited/system.h: Use CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER where needed.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  Minimum Size Application Initialization
2 *
3 *  COPYRIGHT (c) 1989-2007.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *  $Id$
11 */
12
13#include <bsp.h>
14
15rtems_task Init(
16  rtems_task_argument ignored
17)
18{
19}
20
21/* configuration information */
22
23#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
24#define CONFIGURE_MAXIMUM_TASKS 1
25
26/* NOTICE: the clock driver is explicitly disabled */
27#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
28
29/*
30 *  This is the smallest IO subsystem RTEMS currently supports.
31 */
32#define CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
33
34/*
35 *  This disables reentrancy support in the C Library.  It is usually
36 *  not something an application wants to do unless the development
37 *  team is committed to using C Library routines that are KNOWN to
38 *  be reentrant.  Caveat Emptor!!
39 */
40#define CONFIGURE_DISABLE_NEWLIB_REENTRANCY
41
42#define CONFIGURE_INIT
43
44#include <rtems/confdefs.h>
45
46/* global variables */
Note: See TracBrowser for help on using the repository browser.