summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-02 15:45:16 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-02-02 15:55:33 +0100
commit1052242d23ab948369e63791adebfa0644122457 (patch)
tree379fcc293d79789f1cd967908421809792e34160 /cpukit/libfs/src/defaults
parentMerge remote branch 'remotes/origin/gitignore' (diff)
downloadrtems-1052242d23ab948369e63791adebfa0644122457.tar.bz2
Removed fpathconf file system node handler.
There existed no calling function for this handler.
Diffstat (limited to 'cpukit/libfs/src/defaults')
-rw-r--r--cpukit/libfs/src/defaults/default_fpathconf.c22
-rw-r--r--cpukit/libfs/src/defaults/default_handlers.c1
2 files changed, 0 insertions, 23 deletions
diff --git a/cpukit/libfs/src/defaults/default_fpathconf.c b/cpukit/libfs/src/defaults/default_fpathconf.c
deleted file mode 100644
index f65d7d92fc..0000000000
--- a/cpukit/libfs/src/defaults/default_fpathconf.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * COPYRIGHT (c) 2010.
- * 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.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/libio.h>
-#include <rtems/libio_.h>
-#include <rtems/seterr.h>
-
-int rtems_filesystem_default_fpathconf(
- rtems_libio_t *iop,
- int name
-)
-{
- rtems_set_errno_and_return_minus_one( ENOTSUP );
-}
diff --git a/cpukit/libfs/src/defaults/default_handlers.c b/cpukit/libfs/src/defaults/default_handlers.c
index 5343875295..ce6288bbd9 100644
--- a/cpukit/libfs/src/defaults/default_handlers.c
+++ b/cpukit/libfs/src/defaults/default_handlers.c
@@ -31,7 +31,6 @@ const rtems_filesystem_file_handlers_r rtems_filesystem_handlers_default = {
.fstat_h = rtems_filesystem_default_fstat,
.fchmod_h = rtems_filesystem_default_fchmod,
.ftruncate_h = rtems_filesystem_default_ftruncate,
- .fpathconf_h = rtems_filesystem_default_fpathconf,
.fsync_h = rtems_filesystem_default_fsync,
.fdatasync_h = rtems_filesystem_default_fdatasync,
.fcntl_h = rtems_filesystem_default_fcntl,