source: rtems/cpukit/libfs/src/defaults/default_handlers.c @ 255fe43

Last change on this file since 255fe43 was 255fe43, checked in by Joel Sherrill <joel@…>, on 03/01/22 at 20:40:44

cpukit/: Scripted embedded brains header file clean up

Updates #4625.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup LibIO
5 *
6 * @brief rtems_filesystem_handlers_default definition.
7 */
8
9/*
10 * Copyright (c) 2010 embedded brains GmbH.  All rights reserved.
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE.
15 */
16
17#include <rtems/libio.h>
18
19const rtems_filesystem_file_handlers_r rtems_filesystem_handlers_default = {
20  .open_h = rtems_filesystem_default_open,
21  .close_h = rtems_filesystem_default_close,
22  .read_h = rtems_filesystem_default_read,
23  .write_h = rtems_filesystem_default_write,
24  .ioctl_h = rtems_filesystem_default_ioctl,
25  .lseek_h = rtems_filesystem_default_lseek,
26  .fstat_h = rtems_filesystem_default_fstat,
27  .ftruncate_h = rtems_filesystem_default_ftruncate,
28  .fsync_h = rtems_filesystem_default_fsync_or_fdatasync,
29  .fdatasync_h = rtems_filesystem_default_fsync_or_fdatasync,
30  .fcntl_h = rtems_filesystem_default_fcntl,
31  .kqfilter_h = rtems_filesystem_default_kqfilter,
32  .mmap_h = rtems_filesystem_default_mmap,
33  .poll_h = rtems_filesystem_default_poll,
34  .readv_h = rtems_filesystem_default_readv,
35  .writev_h = rtems_filesystem_default_writev
36};
Note: See TracBrowser for help on using the repository browser.