source: rtems/testsuites/samples/pppd/system.h @ a645637

4.104.114.95
Last change on this file since a645637 was e1d3513, checked in by Eric Norum <WENorum@…>, on 10/26/05 at 17:30:34

Remove i386 conditional.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1
2#ifndef SYSTEM_H
3#define SYSTEM_H
4
5#include <rtems.h>
6
7/* functions */
8extern rtems_task Init(rtems_task_argument argument);
9
10#include <bsp.h>
11
12#define CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE
13#ifdef CONFIGURE_INIT
14rtems_driver_address_table Device_drivers[5] = {
15  CONSOLE_DRIVER_TABLE_ENTRY,
16  CLOCK_DRIVER_TABLE_ENTRY,
17#if defined(TTY1_DRIVER_TABLE_ENTRY)
18  TTY1_DRIVER_TABLE_ENTRY,
19#endif
20#if defined(TTY2_DRIVER_TABLE_ENTRY)
21  TTY2_DRIVER_TABLE_ENTRY,
22#endif
23  {NULL, NULL, NULL, NULL, NULL, NULL}
24};
25#endif
26
27#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
28#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 8
29
30#define CONFIGURE_EXECUTIVE_RAM_SIZE (512*1024)
31#define CONFIGURE_MAXIMUM_SEMAPHORES 20
32#define CONFIGURE_MAXIMUM_TASKS      20
33
34#define CONFIGURE_MICROSECONDS_PER_TICK 10000
35
36#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
37#define CONFIGURE_INIT_TASK_PRIORITY   120
38#define CONFIGURE_INIT_TASK_INITIAL_MODES (RTEMS_PREEMPT | \
39                                           RTEMS_NO_TIMESLICE | \
40                                           RTEMS_NO_ASR | \
41                                           RTEMS_INTERRUPT_LEVEL(0))
42
43#include <rtems/confdefs.h>
44
45#endif
Note: See TracBrowser for help on using the repository browser.