source: rtems/cpukit/libfs/src/imfs/imfs_handlers_link.c @ 1052242

4.115
Last change on this file since 1052242 was 1052242, checked in by Sebastian Huber <sebastian.huber@…>, on 02/02/12 at 14:45:16

Removed fpathconf file system node handler.

There existed no calling function for this handler.

  • Property mode set to 100644
File size: 923 bytes
Line 
1/*
2 *  Link Operations Table for the IMFS
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <errno.h>
19
20#include "imfs.h"
21
22/*
23 *  Handler table for IMFS device nodes
24 */
25
26const rtems_filesystem_file_handlers_r IMFS_link_handlers = {
27  rtems_filesystem_default_open,
28  rtems_filesystem_default_close,
29  rtems_filesystem_default_read,
30  rtems_filesystem_default_write,
31  rtems_filesystem_default_ioctl,
32  rtems_filesystem_default_lseek,
33  IMFS_stat,  /* stat */
34  rtems_filesystem_default_fchmod,
35  rtems_filesystem_default_ftruncate,
36  rtems_filesystem_default_fsync,
37  rtems_filesystem_default_fdatasync,
38  rtems_filesystem_default_fcntl,
39  IMFS_rmnod
40};
Note: See TracBrowser for help on using the repository browser.