source: rtems/c/src/lib/libc/fpathconf.c @ 4de102cc

4.104.114.84.95
Last change on this file since 4de102cc was a02224e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/04/02 at 18:29:37

2002-01-04 Ralf Corsepius <corsepiu@…>

  • include/rtems/libio_.h: Remove set_errno_and_return_minus_one.
  • libc/cfsetispeed.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/cfsetospeed.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/chdir.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/chmod.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/chown.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/chroot.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/closedir.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/eval.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fchdir.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fchmod.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fdatasync.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fpathconf.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fstat.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/fsync.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/ftruncate.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/getdents.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/ioctl.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/link.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/lseek.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/mknod.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/open.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/read.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/readlink.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/rmdir.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/stat.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/symlink.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/tcsetattr.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/telldir.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/ttyname.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/ttyname_r.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/unlink.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/unmount.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/utime.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • libc/write.c: Include <rtems/seterr.h>. Apply rtems_set_errno_and_return_minus_one.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  fpathconf() - POSIX 1003.1b - 5.7.1 - Configurable Pathname Varables
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
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.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/libio_.h>
19#include <rtems/seterr.h>
20
21#include <unistd.h>
22#include <errno.h>
23
24long fpathconf(
25  int   fd,
26  int   name
27)
28{
29  long                                    return_value;
30  rtems_libio_t                          *iop;
31  rtems_filesystem_limits_and_options_t  *the_limits;
32
33  rtems_libio_check_fd(fd);
34  iop = rtems_libio_iop(fd);
35  rtems_libio_check_is_open(iop);
36  rtems_libio_check_permissions(iop, LIBIO_FLAGS_READ);
37
38  /*
39   *  Now process the information request.
40   */
41
42  the_limits = &iop->pathinfo.mt_entry->pathconf_limits_and_options;
43
44  switch ( name ) {
45    case _PC_LINK_MAX:
46      return_value = the_limits->link_max;
47      break;
48    case _PC_MAX_CANON:
49      return_value = the_limits->max_canon;
50      break;
51    case _PC_MAX_INPUT:
52      return_value = the_limits->max_input;
53      break;
54    case _PC_NAME_MAX:
55      return_value = the_limits->name_max;
56      break;
57    case _PC_PATH_MAX:
58      return_value = the_limits->path_max;
59      break;
60    case _PC_PIPE_BUF:
61      return_value = the_limits->pipe_buf;
62      break;
63    case _PC_CHOWN_RESTRICTED:
64      return_value = the_limits->posix_chown_restrictions;
65      break;
66    case _PC_NO_TRUNC:
67      return_value = the_limits->posix_no_trunc;
68      break;
69    case _PC_VDISABLE:
70      return_value = the_limits->posix_vdisable;
71      break;
72    case _PC_ASYNC_IO:
73      return_value = the_limits->posix_async_io;
74      break;
75    case _PC_PRIO_IO:
76      return_value = the_limits->posix_prio_io;
77      break;
78    case _PC_SYNC_IO:
79      return_value = the_limits->posix_sync_io;
80      break;
81    default:
82      rtems_set_errno_and_return_minus_one( EINVAL );
83      break;
84  }
85
86  return return_value;
87}
Note: See TracBrowser for help on using the repository browser.