summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_free.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-14 15:44:44 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-14 15:44:44 +0000
commit8f7b8f7bb25f86b01e2e791534f08a47803bd960 (patch)
treed1929e6ffbec7445f13dbbcdfe6dd6b25a53716e /cpukit/libfs/src/imfs/imfs_free.c
parent2010-07-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8f7b8f7bb25f86b01e2e791534f08a47803bd960.tar.bz2
2010-07-14 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/Makefile.am: Remove reference to imfs_free.c, wrapup/Makefile.am: Split devfs into its own library. * libfs/src/imfs/fifoimfs_init.c, libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_init.c, libfs/src/rfs/rtems-rfs-rtems.c: Use default freenode implementation. * libfs/src/imfs/imfs_free.c: Removed.
Diffstat (limited to 'cpukit/libfs/src/imfs/imfs_free.c')
-rw-r--r--cpukit/libfs/src/imfs/imfs_free.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/cpukit/libfs/src/imfs/imfs_free.c b/cpukit/libfs/src/imfs/imfs_free.c
deleted file mode 100644
index affbcaa044..0000000000
--- a/cpukit/libfs/src/imfs/imfs_free.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Free IMFS Node Support Routines
- *
- *
- * COPYRIGHT (c) 1989-1999.
- * 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$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <errno.h>
-
-#include <rtems/libio_.h>
-#include "imfs.h"
-
-/*
- * IMFS_freenodinfo
- *
- * This routine is the IMFS free node handler for the file system
- * operations table.
- *
- * The In Memory File System keeps its nodes in memory. This routine
- * is for file sytems that do not.
- */
-
-int IMFS_freenodinfo(
- rtems_filesystem_location_info_t *pathloc /* IN */
-)
-{
- return 0;
-}