summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs.h
diff options
context:
space:
mode:
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.