source: rtems/cpukit/libfs/src/dosfs/msdos_handlers_dir.c @ 962571e9

4.115
Last change on this file since 962571e9 was 962571e9, checked in by Joel Sherrill <joel.sherrill@…>, on 07/01/10 at 20:18:41

2010-07-01 Joel Sherrill <joel.sherrilL@…>

  • libfs/src/dosfs/msdos_handlers_dir.c, libfs/src/dosfs/msdos_handlers_file.c, libfs/src/imfs/imfs_fifo.c, libfs/src/imfs/imfs_handlers_device.c, libfs/src/imfs/imfs_handlers_directory.c, libfs/src/imfs/imfs_handlers_link.c, libfs/src/imfs/imfs_handlers_memfile.c, libfs/src/imfs/miniimfs_init.c, libfs/src/rfs/rtems-rfs-rtems-dev.c, libfs/src/rfs/rtems-rfs-rtems-dir.c, libfs/src/rfs/rtems-rfs-rtems-file.c: Turn NULLs into default handlers.
  • Property mode set to 100644
File size: 877 bytes
Line 
1/*
2 *  Directory Handlers Table for MSDOS filesystem
3 *
4 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
5 *  Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru>
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 <rtems/libio.h>
19#include "msdos.h"
20
21const rtems_filesystem_file_handlers_r msdos_dir_handlers = {
22    msdos_dir_open,
23    msdos_dir_close,
24    msdos_dir_read,
25    rtems_filesystem_default_write,
26    rtems_filesystem_default_ioctl,
27    msdos_dir_lseek,
28    msdos_dir_stat,
29    msdos_dir_chmod,
30    rtems_filesystem_default_ftruncate,
31    rtems_filesystem_default_fpathconf,
32    msdos_dir_sync,
33    msdos_dir_sync,
34    rtems_filesystem_default_fcntl,
35    msdos_dir_rmnod
36};
Note: See TracBrowser for help on using the repository browser.