summaryrefslogtreecommitdiffstats
path: root/c/src/lib/include
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-12 16:37:04 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-12 16:37:04 +0000
commit1bce63758768e6ef94426fd11d63478f2cec1306 (patch)
tree097bfe0af9f13be9fdf467fef3e5c555fb466ff5 /c/src/lib/include
parentNew file. This is a simple termios console driver which is sufficient (diff)
downloadrtems-1bce63758768e6ef94426fd11d63478f2cec1306.tar.bz2
Added printk as a generic, shared routine.
Diffstat (limited to 'c/src/lib/include')
-rw-r--r--c/src/lib/include/Makefile.am2
-rw-r--r--c/src/lib/include/bspIo.h37
2 files changed, 38 insertions, 1 deletions
diff --git a/c/src/lib/include/Makefile.am b/c/src/lib/include/Makefile.am
index 4a5e8d14c4..3988f9918d 100644
--- a/c/src/lib/include/Makefile.am
+++ b/c/src/lib/include/Makefile.am
@@ -4,7 +4,7 @@
AUTOMAKE_OPTIONS = foreign 1.4
-H_FILES = chain.h console.h clockdrv.h iosupp.h ringbuf.h spurious.h \
+H_FILES = bspIo.h chain.h console.h clockdrv.h iosupp.h ringbuf.h spurious.h \
timerdrv.h vmeintr.h
noinst_HEADERS = $(H_FILES)
diff --git a/c/src/lib/include/bspIo.h b/c/src/lib/include/bspIo.h
new file mode 100644
index 0000000000..0ff070c4c5
--- /dev/null
+++ b/c/src/lib/include/bspIo.h
@@ -0,0 +1,37 @@
+/* bspIo.h
+ *
+ * This include file contains declaration of interface that
+ * will be provided by the file contained in this directory.
+ *
+ *
+ * COPYRIGHT (c) 1998 valette@crf.canon.fr
+ *
+ * The license and distribution terms for this file may be
+ * found in found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+#ifndef _LIBBSP_I386_SHARED_IO_BSP_IO_H
+#define _LIBBSP_I386_SHARED_IO_BSP_IO_H
+
+/*
+ * All the functions declared as extern after this comment
+ * MUST be implemented in each BSP. Using this function,
+ * this directory contains shared code that export higher level
+ * functionnality described after the next command.
+ */
+typedef void (*BSP_output_char_function_type) (char c);
+typedef char (*BSP_polling_getchar_function_type) (void);
+
+extern BSP_output_char_function_type BSP_output_char;
+extern BSP_polling_getchar_function_type BSP_poll_char;
+/*
+ * All the function declared as extern after this comment
+ * are available for each ix86 BSP by compiling and linking
+ * the files contained in this directory PROVIDED definition
+ * and initialisation of the previous variable are done.
+ */
+void printk(char *fmt, ...);
+
+#endif