summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems/libio.h
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-30 13:58:56 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-30 13:58:56 +0000
commit6683a58d6ec2168e08f25ffa04febab71391371d (patch)
tree30ce93812ea002af9231890b1ef25b8ffc7d4d50 /cpukit/libcsupport/include/rtems/libio.h
parent2010-06-30 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-6683a58d6ec2168e08f25ffa04febab71391371d.tar.bz2
2010-06-30 Jennifer.Averett <Jennifer.Averett@OARcorp.com>
* libcsupport/include/rtems/libio.h, libfs/Makefile.am: Added filesystem default mknod method. * libfs/src/defaults/default_mknod.c: New file.
Diffstat (limited to 'cpukit/libcsupport/include/rtems/libio.h')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index 3b5e373b68..d0edc1e184 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -918,6 +918,17 @@ int rtems_filesystem_default_unlink(
/**
* @brief Provides a defualt routine for filesystem
+ * implementation to create a new node.
+ */
+int rtems_filesystem_default_mknod(
+ const char *path, /* IN */
+ mode_t mode, /* IN */
+ dev_t dev, /* IN */
+ rtems_filesystem_location_info_t *pathloc /* IN/OUT */
+);
+
+/**
+ * @brief Provides a defualt routine for filesystem
* implementation of a chown command.
*/
int rtems_filesystem_default_chown(