source: rtems/cpukit/libfs/src/dosfs/msdos_handlers_file.c @ d61b0a5

4.115
Last change on this file since d61b0a5 was d61b0a5, checked in by Sebastian Huber <sebastian.huber@…>, on 05/07/12 at 14:15:57

Filesystem: PR1871: Fix O_APPEND

  • Property mode set to 100644
File size: 809 bytes
Line 
1/*
2 *  File Operations 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_file_handlers = {
22    rtems_filesystem_default_open,
23    msdos_file_close,
24    msdos_file_read,
25    msdos_file_write,
26    rtems_filesystem_default_ioctl,
27    rtems_filesystem_default_lseek_file,
28    msdos_file_stat,
29    msdos_file_ftruncate,
30    msdos_file_sync,
31    msdos_file_datasync,
32    rtems_filesystem_default_fcntl
33};
Note: See TracBrowser for help on using the repository browser.