From 1bce63758768e6ef94426fd11d63478f2cec1306 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 12 Jun 2000 16:37:04 +0000 Subject: Added printk as a generic, shared routine. --- c/src/lib/include/Makefile.am | 2 +- c/src/lib/include/bspIo.h | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 c/src/lib/include/bspIo.h (limited to 'c/src/lib/include') 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 -- cgit v1.2.3