summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sh/simsh4/include/ramdisk.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-10-11 21:04:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-10-11 21:04:35 +0000
commitcd67dcaf009326c46d67951976f87a6559ed7928 (patch)
tree96f9988bfe3f4c56ea79b00f2146f8c09c6be5d0 /c/src/lib/libbsp/sh/simsh4/include/ramdisk.h
parent2001-10-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-cd67dcaf009326c46d67951976f87a6559ed7928.tar.bz2
2001-10-11 Alexandra Kossovsky <sasha@oktet.ru>
* clock/Makefile.am, clock/ckinit.c, clock/.cvsignore, Makefile.am, README, bsp_specs, console/Makefile.am, console/console.c, console/.cvsignore, include/Makefile.am, include/bsp.h, include/coverhd.h, include/syscall.h, include/ramdisk.h, include/.cvsignore, start/Makefile.am, start/start.S, start/.cvsignore, startup/Makefile.am, startup/bspstart.c, startup/hw_init.c, startup/linkcmds, startup/linkcmds-le, startup/linkcmds-le.coff, startup/.cvsignore, timer/Makefile.am, timer/timer.c, timer/.cvsignore, wrapup/Makefile.am, wrapup/.cvsignore, configure.ac, .cvsignore, ChangeLog: New files. Reviewed and updated to latest automake and autoconf standards by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/sh/simsh4/include/ramdisk.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/sh/simsh4/include/ramdisk.h b/c/src/lib/libbsp/sh/simsh4/include/ramdisk.h
new file mode 100644
index 0000000000..af0019df7c
--- /dev/null
+++ b/c/src/lib/libbsp/sh/simsh4/include/ramdisk.h
@@ -0,0 +1,55 @@
+/* ramdisk.h
+ *
+ *
+ * Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
+ * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
+ *
+ *
+ * COPYRIGHT (c) 1989-2001.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#ifndef _RAMDISK_DRIVER_h
+#define _RAMDISK_DRIVER_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+rtems_device_driver ramdisk_initialize(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+rtems_device_driver ramdisk_open(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+rtems_device_driver ramdisk_close(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+rtems_device_driver ramdisk_read(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+rtems_device_driver ramdisk_write(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+rtems_device_driver ramdisk_control(rtems_device_major_number major,
+ rtems_device_minor_number minor,
+ void *arg);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/* end of include file */