summaryrefslogtreecommitdiffstats
path: root/c/src/lib/include
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/include')
-rw-r--r--c/src/lib/include/rtems/libio.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/c/src/lib/include/rtems/libio.h b/c/src/lib/include/rtems/libio.h
index ce46031569..c4e54c4132 100644
--- a/c/src/lib/include/rtems/libio.h
+++ b/c/src/lib/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 */