summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/example/system.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-04-10 11:26:33 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2014-04-10 11:28:52 +0200
commit7a597e977c1aed02645fca315dc65a0f2679d531 (patch)
treeeb5a00afe7a4b55bcfef7dd69ece0d77e1e8423a /cpukit/pppd/example/system.h
parentscore: Fix workspace size estimate for TLS (diff)
downloadrtems-7a597e977c1aed02645fca315dc65a0f2679d531.tar.bz2
pppd: Delete example
This example is available via testsuites/samples/pppd.
Diffstat (limited to '')
-rw-r--r--cpukit/pppd/example/system.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/cpukit/pppd/example/system.h b/cpukit/pppd/example/system.h
deleted file mode 100644
index c727b2f085..0000000000
--- a/cpukit/pppd/example/system.h
+++ /dev/null
@@ -1,42 +0,0 @@
-
-#ifndef SYSTEM_H
-#define SYSTEM_H
-
-#include <rtems.h>
-#include <tty_drv.h>
-
-/* functions */
-extern rtems_task Init(rtems_task_argument argument);
-
-#include <bsp.h>
-
-#define CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE
-#ifdef CONFIGURE_INIT
-rtems_driver_address_table Device_drivers[5] = {
- CONSOLE_DRIVER_TABLE_ENTRY,
- CLOCK_DRIVER_TABLE_ENTRY,
- TTY1_DRIVER_TABLE_ENTRY,
- TTY2_DRIVER_TABLE_ENTRY,
- {NULL, NULL, NULL, NULL, NULL, NULL}
-};
-#endif
-
-#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 8
-
-#define CONFIGURE_EXECUTIVE_RAM_SIZE (512*1024)
-#define CONFIGURE_MAXIMUM_SEMAPHORES 20
-#define CONFIGURE_MAXIMUM_TASKS 20
-
-#define CONFIGURE_MICROSECONDS_PER_TICK 10000
-
-#define CONFIGURE_INIT_TASK_STACK_SIZE (10*1024)
-#define CONFIGURE_INIT_TASK_PRIORITY 120
-#define CONFIGURE_INIT_TASK_INITIAL_MODES (RTEMS_PREEMPT | \
- RTEMS_NO_TIMESLICE | \
- RTEMS_NO_ASR | \
- RTEMS_INTERRUPT_LEVEL(0))
-
-#include <rtems/confdefs.h>
-
-#endif