source: rtems/c/src/exec/libfs/src/imfs/imfs_config.c @ c058578

4.104.114.84.95
Last change on this file since c058578 was c058578, checked in by Joel Sherrill <joel.sherrill@…>, on 11/01/00 at 21:02:46

2000-11-01 Joel Sherrill <joel@…>

  • src/imfs/Makefile.am, src/imfs/deviceio.c, src/imfs/imfs_chown.c, src/imfs/imfs_config.c, src/imfs/imfs_creat.c, src/imfs/imfs_debug.c, src/imfs/imfs_directory.c, src/imfs/imfs_eval.c, src/imfs/imfs_fchmod.c, src/imfs/imfs_free.c, src/imfs/imfs_fsunmount.c, src/imfs/imfs_gtkn.c, src/imfs/imfs_init.c, src/imfs/imfs_initsupp.c, src/imfs/imfs_link.c, src/imfs/imfs_mknod.c, src/imfs/imfs_mount.c, src/imfs/imfs_readlink.c, src/imfs/imfs_rmnod.c, src/imfs/imfs_stat.c, src/imfs/imfs_symlink.c, src/imfs/imfs_unixstub.c, src/imfs/imfs_unlink.c, src/imfs/imfs_unmount.c, src/imfs/imfs_utime.c, src/imfs/ioman.c, src/imfs/memfile.c, src/imfs/miniimfs_init.c: assoc.h, error.h, libio_.h, libio.h, and libcsupport.h moved from libc to lib/include/rtems and now must be referenced as <rtems/XXX.h>. Now we do not have to reach up and over to libc to pick them up.
  • Property mode set to 100644
File size: 794 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.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#include <rtems.h>
13#include <rtems/libio_.h>
14#include "imfs.h"
15
16/* XXX this structure should use real constants */
17
18rtems_filesystem_limits_and_options_t IMFS_LIMITS_AND_OPTIONS = {
19   5,   /* link_max */
20   6,   /* max_canon */
21   7,   /* max_input */
22   IMFS_NAME_MAX,       /* name_max */
23   255, /* path_max */
24   2,   /* pipe_buf */
25   1,   /* posix_async_io */
26   2,   /* posix_chown_restrictions */
27   3,   /* posix_no_trunc */
28   4,   /* posix_prio_io */
29   5,   /* posix_sync_io */
30   6    /* posix_vdisable */
31};
32
33
Note: See TracBrowser for help on using the repository browser.