summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2014-12-21 20:12:28 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-01-22 07:52:40 +0100
commitc625a641218fbda23582354b3cfc7a7c7a4e4287 (patch)
tree82853d039ebb88fb4e7afe0b572c1d072a3f4d00 /cpukit/libfs/src/imfs/imfs.h
parentpowerpc: Fix AltiVec VSCR save/restore (diff)
downloadrtems-c625a641218fbda23582354b3cfc7a7c7a4e4287.tar.bz2
Filesystem: Delete node type operation
Use the fstat handler instead.
Diffstat (limited to 'cpukit/libfs/src/imfs/imfs.h')
-rw-r--r--cpukit/libfs/src/imfs/imfs.h20
1 files changed, 5 insertions, 15 deletions
diff --git a/cpukit/libfs/src/imfs/imfs.h b/cpukit/libfs/src/imfs/imfs.h
index 7dca51f97a..c34f89fd15 100644
--- a/cpukit/libfs/src/imfs/imfs.h
+++ b/cpukit/libfs/src/imfs/imfs.h
@@ -136,11 +136,11 @@ typedef struct {
* What types of IMFS file systems entities there can be.
*/
typedef enum {
- IMFS_DIRECTORY = RTEMS_FILESYSTEM_DIRECTORY,
- IMFS_DEVICE = RTEMS_FILESYSTEM_DEVICE,
- IMFS_HARD_LINK = RTEMS_FILESYSTEM_HARD_LINK,
- IMFS_SYM_LINK = RTEMS_FILESYSTEM_SYM_LINK,
- IMFS_MEMORY_FILE = RTEMS_FILESYSTEM_MEMORY_FILE,
+ IMFS_DIRECTORY,
+ IMFS_DEVICE,
+ IMFS_HARD_LINK,
+ IMFS_SYM_LINK,
+ IMFS_MEMORY_FILE,
IMFS_LINEAR_FILE,
IMFS_FIFO,
IMFS_GENERIC,
@@ -515,16 +515,6 @@ extern int IMFS_node_clone( rtems_filesystem_location_info_t *loc );
extern void IMFS_node_free( const rtems_filesystem_location_info_t *loc );
/**
- * @brief IMFS Node Type Get the type of an IMFS node.
- *
- * The following verifies that returns the type of node that the
- * loc refers to.
- */
-extern rtems_filesystem_node_types_t IMFS_node_type(
- const rtems_filesystem_location_info_t *loc
-);
-
-/**
* @brief Perform a status processing for the IMFS.
*
* This routine provides a stat for the IMFS file system.