summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/imfs_handlers_device.c
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 15:19:13 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>1999-10-29 15:19:13 +0000
commit4a07d2b866a2104102215cbd196269dcce18c000 (patch)
tree2a84022d24a4688bbeb8ef469a9983abc0bd6a7d /c/src/lib/libc/imfs_handlers_device.c
parentJoel added a table of mount entry requests to be processed during (diff)
downloadrtems-4a07d2b866a2104102215cbd196269dcce18c000.tar.bz2
Moved the rmnod callback from the operations table to the handler table.
Diffstat (limited to 'c/src/lib/libc/imfs_handlers_device.c')
-rw-r--r--c/src/lib/libc/imfs_handlers_device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/lib/libc/imfs_handlers_device.c b/c/src/lib/libc/imfs_handlers_device.c
index 38a6aca7d4..b6b9c808a0 100644
--- a/c/src/lib/libc/imfs_handlers_device.c
+++ b/c/src/lib/libc/imfs_handlers_device.c
@@ -33,5 +33,6 @@ rtems_filesystem_file_handlers_r IMFS_device_handlers = {
NULL, /* fpathconf */
NULL, /* fsync */
NULL, /* fdatasync */
- NULL /* fcntl */
+ NULL, /* fcntl */
+ IMFS_rmnod
};