summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/include
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 14:28:39 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 14:28:39 +0000
commit4bde80720f95e5f817dedd95de8b46f19c3cb744 (patch)
tree8931c939e17fccc646ab23131c286ac7a5a9f36d /c/src/exec/libcsupport/include
parentChanged version timestamp. (diff)
downloadrtems-4bde80720f95e5f817dedd95de8b46f19c3cb744.tar.bz2
Joel added a table of mount entry requests to be processed during
initialization.
Diffstat (limited to 'c/src/exec/libcsupport/include')
-rw-r--r--c/src/exec/libcsupport/include/rtems/libio.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/c/src/exec/libcsupport/include/rtems/libio.h b/c/src/exec/libcsupport/include/rtems/libio.h
index ce46031569..c4e54c4132 100644
--- a/c/src/exec/libcsupport/include/rtems/libio.h
+++ b/c/src/exec/libcsupport/include/rtems/libio.h
@@ -568,4 +568,18 @@ int mount(
char *mount_point
);
+/*
+ * Boot Time Mount Table Structure
+ */
+
+typedef struct {
+ rtems_filesystem_operations_table *fs_ops;
+ rtems_filesystem_options_t fsoptions;
+ char *device;
+ char *mount_point;
+} rtems_filesystem_mount_table_t;
+
+extern rtems_filesystem_mount_table_t *rtems_filesystem_mount_table;
+extern int rtems_filesystem_mount_table_size;
+
#endif /* _RTEMS_LIBIO_H */