source: rtems/c/src/libfs/src/imfs/imfs_free.c @ 657e1bf6

4.104.114.84.95
Last change on this file since 657e1bf6 was 657e1bf6, checked in by Joel Sherrill <joel.sherrill@…>, on 10/26/99 at 20:17:13

Added initial cut at miniIMFS which leaves out memfile and directory
readdir support. The next step is to add a mount table and configure
either the miniIMFS or the full IMFS at the application level.

  • Property mode set to 100644
File size: 757 bytes
Line 
1/*
2 *  Free IMFS Node Support Routines
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <errno.h>
17
18#include "libio_.h"
19#include "imfs.h"
20
21/*
22 *  IMFS_freenodinfo
23 *
24 *  This routine is the IMFS free node handler for the file system
25 *  operations table. 
26 *
27 *  The In Memory File System keeps its nodes in memory.  This routine
28 *  is for file sytems that do not.
29 */
30
31int IMFS_freenodinfo(
32 rtems_filesystem_location_info_t      *pathloc       /* IN */
33)
34{
35  return 0;
36}
37
Note: See TracBrowser for help on using the repository browser.