source: rtems/cpukit/libfs/src/imfs/imfs_config.c @ 3c96bee

4.115
Last change on this file since 3c96bee was ef5e452, checked in by Alex Ivanov <alexivanov97@…>, on 12/20/12 at 15:45:31

libfs: Doxygen Enhancement Task #1

  • Property mode set to 100644
File size: 899 bytes
Line 
1/**
2 * @file
3 *
4 * @brief IMFS Limits and Options
5 * @ingroup IMFS
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-1999.
10 *  On-Line Applications Research Corporation (OAR).
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.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems.h>
22#include <rtems/libio_.h>
23#include "imfs.h"
24
25/* XXX this structure should use real constants */
26
27const rtems_filesystem_limits_and_options_t IMFS_LIMITS_AND_OPTIONS = {
28   5,   /* link_max */
29   6,   /* max_canon */
30   7,   /* max_input */
31   IMFS_NAME_MAX,       /* name_max */
32   255, /* path_max */
33   2,   /* pipe_buf */
34   1,   /* posix_async_io */
35   2,   /* posix_chown_restrictions */
36   3,   /* posix_no_trunc */
37   4,   /* posix_prio_io */
38   5,   /* posix_sync_io */
39   6    /* posix_vdisable */
40};
Note: See TracBrowser for help on using the repository browser.