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

4.104.114.84.95
Last change on this file since a29d2e7 was 3239698, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:26:21

Remove stray white spaces.

  • Property mode set to 100644
File size: 833 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-1999.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems.h>
17#include <rtems/libio_.h>
18#include "imfs.h"
19
20/* XXX this structure should use real constants */
21
22rtems_filesystem_limits_and_options_t IMFS_LIMITS_AND_OPTIONS = {
23   5,   /* link_max */
24   6,   /* max_canon */
25   7,   /* max_input */
26   IMFS_NAME_MAX,       /* name_max */
27   255, /* path_max */
28   2,   /* pipe_buf */
29   1,   /* posix_async_io */
30   2,   /* posix_chown_restrictions */
31   3,   /* posix_no_trunc */
32   4,   /* posix_prio_io */
33   5,   /* posix_sync_io */
34   6    /* posix_vdisable */
35};
Note: See TracBrowser for help on using the repository browser.