summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
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/libcsupport
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/libcsupport')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index 677ee40280..661fe0bc33 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -156,15 +156,6 @@ typedef int (*rtems_filesystem_ftruncate_t)(
);
/**
- * This type defines the interface to the fpathconf(2) system call
- * support which is provided by a file system implementation.
- */
-typedef int (*rtems_filesystem_fpathconf_t)(
- rtems_libio_t *iop,
- int name
-);
-
-/**
* This type defines the interface to the fsync(2) system call
* support which is provided by a file system implementation.
*/
@@ -299,17 +290,6 @@ struct _rtems_filesystem_file_handlers_r {
/**
* This field points to the file system specific implementation
- * of the support routine for the fpathconf(2) system call
- *
- * @note This method may use a default implementation.
- *
- * @note The default implementation returns -1 and sets
- * errno to ENOTSUP.
- */
- rtems_filesystem_fpathconf_t fpathconf_h;
-
- /**
- * This field points to the file system specific implementation
* of the support routine for the fsync(2) system call
*
* @note This method may use a default implementation.
@@ -447,15 +427,6 @@ int rtems_filesystem_default_ftruncate(
);
/**
- * This method defines the interface to the default fpathconf(2) system call
- * support which is provided by a file system implementation.
- */
-int rtems_filesystem_default_fpathconf(
- rtems_libio_t *iop,
- int name
-);
-
-/**
* This method defines the interface to the default fsync(2) system call
* support which is provided by a file system implementation.
*/