summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-17 19:51:51 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-17 19:51:51 +0000
commitb06e68ef1f6df69cc86d72356c3a002054a35fad (patch)
tree722b2da3cc83f1cf03019cab8cf895a509eb6801 /c/src/lib/libbsp/unix/posix/include
parentvariable length messages (diff)
downloadrtems-b06e68ef1f6df69cc86d72356c3a002054a35fad.tar.bz2
Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@divnc.com) including the following major additions: + variable length messages + named devices + debug monitor + association tables/variables
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/include')
-rw-r--r--c/src/lib/libbsp/unix/posix/include/bsp.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/unix/posix/include/bsp.h b/c/src/lib/libbsp/unix/posix/include/bsp.h
index da10d4de8c..3bf43ca0c8 100644
--- a/c/src/lib/libbsp/unix/posix/include/bsp.h
+++ b/c/src/lib/libbsp/unix/posix/include/bsp.h
@@ -78,6 +78,20 @@ extern rtems_configuration_table BSP_Configuration;
*/
/* #define INTERRUPT_EXTERNAL_MPCI SIGUSR1 */
+
+/*
+ * Console driver init
+ */
+
+rtems_device_driver console_initialize(
+ rtems_device_major_number, rtems_device_minor_number minor, void *);
+
+#define CONSOLE_DRIVER_TABLE_ENTRY \
+ { console_initialize, NULL, NULL, NULL, NULL, NULL }
+
+/*
+ * NOTE: Use the standard Clock driver entry
+ */
/* functions */