OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc2/] [newlib/] [libc/] [sys/] [linux/] [confstr.c] - Diff between revs 207 and 520

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 520
/* Copyright (C) 1991, 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
/* Copyright (C) 1991, 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
   This file is part of the GNU C Library.
   This file is part of the GNU C Library.
 
 
   The GNU C Library is free software; you can redistribute it and/or
   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.
   version 2.1 of the License, or (at your option) any later version.
 
 
   The GNU C Library is distributed in the hope that it will be useful,
   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.
   Lesser General Public License for more details.
 
 
   You should have received a copy of the GNU Lesser General Public
   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, write to the Free
   License along with the GNU C Library; if not, write to the Free
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
   02111-1307 USA.  */
   02111-1307 USA.  */
 
 
#define _GNU_SOURCE 1
#define _GNU_SOURCE 1
 
 
#include <stddef.h>
#include <stddef.h>
#include <errno.h>
#include <errno.h>
#include <unistd.h>
#include <unistd.h>
#include <string.h>
#include <string.h>
#include <confstr.h>
#include <confstr.h>
 
 
/* If BUF is not NULL and LEN > 0, fill in at most LEN - 1 bytes
/* If BUF is not NULL and LEN > 0, fill in at most LEN - 1 bytes
   of BUF with the value corresponding to NAME and zero-terminate BUF.
   of BUF with the value corresponding to NAME and zero-terminate BUF.
   Return the number of bytes required to hold NAME's entire value.  */
   Return the number of bytes required to hold NAME's entire value.  */
size_t
size_t
confstr (name, buf, len)
confstr (name, buf, len)
     int name;
     int name;
     char *buf;
     char *buf;
     size_t len;
     size_t len;
{
{
  const char *string;
  const char *string;
  size_t string_len;
  size_t string_len;
 
 
  switch (name)
  switch (name)
    {
    {
    case _CS_PATH:
    case _CS_PATH:
      {
      {
        static const char cs_path[] = CS_PATH;
        static const char cs_path[] = CS_PATH;
        string = cs_path;
        string = cs_path;
        string_len = sizeof (cs_path);
        string_len = sizeof (cs_path);
      }
      }
      break;
      break;
 
 
    case _CS_V6_WIDTH_RESTRICTED_ENVS:
    case _CS_V6_WIDTH_RESTRICTED_ENVS:
      /* We have to return a newline-separated list of named of
      /* We have to return a newline-separated list of named of
         programming environements in which the widths of blksize_t,
         programming environements in which the widths of blksize_t,
         cc_t, mode_t, nfds_t, pid_t, ptrdiff_t, size_t, speed_t,
         cc_t, mode_t, nfds_t, pid_t, ptrdiff_t, size_t, speed_t,
         ssize_t, suseconds_t, tcflag_t, useconds_t, wchar_t, and
         ssize_t, suseconds_t, tcflag_t, useconds_t, wchar_t, and
         wint_t types are no greater than the width of type long.
         wint_t types are no greater than the width of type long.
 
 
         Currently this means all environment which the system allows.  */
         Currently this means all environment which the system allows.  */
      {
      {
        static const char restenvs[] =
        static const char restenvs[] =
#if _POSIX_V6_ILP32_OFF32 > 0
#if _POSIX_V6_ILP32_OFF32 > 0
        "_POSIX_V6_ILP32_OFF32"
        "_POSIX_V6_ILP32_OFF32"
#endif
#endif
#if _POSIX_V6_ILP32_OFFBIG > 0
#if _POSIX_V6_ILP32_OFFBIG > 0
# if _POSIX_V6_ILP32_OFF32 > 0
# if _POSIX_V6_ILP32_OFF32 > 0
        "\n"
        "\n"
# endif
# endif
        "_POSIX_V6_ILP32_OFFBIG"
        "_POSIX_V6_ILP32_OFFBIG"
#endif
#endif
#if _POSIX_V6_LP64_OFF64 > 0
#if _POSIX_V6_LP64_OFF64 > 0
# if _POSIX_V6_ILP32_OFF32 > 0 || _POSIX_V6_ILP32_OFFBIG > 0
# if _POSIX_V6_ILP32_OFF32 > 0 || _POSIX_V6_ILP32_OFFBIG > 0
        "\n"
        "\n"
# endif
# endif
        "_POSIX_V6_LP64_OFF64"
        "_POSIX_V6_LP64_OFF64"
#endif
#endif
#if _POSIX_V6_LPBIG_OFFBIG > 0
#if _POSIX_V6_LPBIG_OFFBIG > 0
# if _POSIX_V6_ILP32_OFF32 > 0 || _POSIX_V6_ILP32_OFFBIG > 0 \
# if _POSIX_V6_ILP32_OFF32 > 0 || _POSIX_V6_ILP32_OFFBIG > 0 \
     || _POSIX_V6_LP64_OFF64 > 0
     || _POSIX_V6_LP64_OFF64 > 0
        "\n"
        "\n"
# endif
# endif
        "_POSIX_V6_LPBIG_OFFBIG"
        "_POSIX_V6_LPBIG_OFFBIG"
#endif
#endif
          ;
          ;
        string = restenvs;
        string = restenvs;
        string_len = sizeof (restenvs);
        string_len = sizeof (restenvs);
      }
      }
      break;
      break;
 
 
    case _CS_XBS5_ILP32_OFFBIG_CFLAGS:
    case _CS_XBS5_ILP32_OFFBIG_CFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_CFLAGS:
    case _CS_LFS_CFLAGS:
    case _CS_LFS_CFLAGS:
#if _XBS5_LP64_OFF64 == -1 && _XBS5_LPBIG_OFFBIG == -1 && _XBS5_ILP32_OFFBIG == 1
#if _XBS5_LP64_OFF64 == -1 && _XBS5_LPBIG_OFFBIG == -1 && _XBS5_ILP32_OFFBIG == 1
      /* Signal that we want the new ABI.  */
      /* Signal that we want the new ABI.  */
      {
      {
        static const char file_offset[] = "-D_FILE_OFFSET_BITS=64";
        static const char file_offset[] = "-D_FILE_OFFSET_BITS=64";
        string = file_offset;
        string = file_offset;
        string_len = sizeof (file_offset);
        string_len = sizeof (file_offset);
      }
      }
      break;
      break;
#endif
#endif
      /* FALLTHROUGH */
      /* FALLTHROUGH */
 
 
    case _CS_LFS_LINTFLAGS:
    case _CS_LFS_LINTFLAGS:
    case _CS_LFS_LDFLAGS:
    case _CS_LFS_LDFLAGS:
    case _CS_LFS_LIBS:
    case _CS_LFS_LIBS:
    case _CS_LFS64_CFLAGS:
    case _CS_LFS64_CFLAGS:
    case _CS_LFS64_LINTFLAGS:
    case _CS_LFS64_LINTFLAGS:
    case _CS_LFS64_LDFLAGS:
    case _CS_LFS64_LDFLAGS:
    case _CS_LFS64_LIBS:
    case _CS_LFS64_LIBS:
 
 
    case _CS_XBS5_ILP32_OFF32_CFLAGS:
    case _CS_XBS5_ILP32_OFF32_CFLAGS:
    case _CS_XBS5_ILP32_OFF32_LDFLAGS:
    case _CS_XBS5_ILP32_OFF32_LDFLAGS:
    case _CS_XBS5_ILP32_OFF32_LIBS:
    case _CS_XBS5_ILP32_OFF32_LIBS:
    case _CS_XBS5_ILP32_OFF32_LINTFLAGS:
    case _CS_XBS5_ILP32_OFF32_LINTFLAGS:
    case _CS_XBS5_ILP32_OFFBIG_LDFLAGS:
    case _CS_XBS5_ILP32_OFFBIG_LDFLAGS:
    case _CS_XBS5_ILP32_OFFBIG_LIBS:
    case _CS_XBS5_ILP32_OFFBIG_LIBS:
    case _CS_XBS5_ILP32_OFFBIG_LINTFLAGS:
    case _CS_XBS5_ILP32_OFFBIG_LINTFLAGS:
    case _CS_XBS5_LP64_OFF64_CFLAGS:
    case _CS_XBS5_LP64_OFF64_CFLAGS:
    case _CS_XBS5_LP64_OFF64_LDFLAGS:
    case _CS_XBS5_LP64_OFF64_LDFLAGS:
    case _CS_XBS5_LP64_OFF64_LIBS:
    case _CS_XBS5_LP64_OFF64_LIBS:
    case _CS_XBS5_LP64_OFF64_LINTFLAGS:
    case _CS_XBS5_LP64_OFF64_LINTFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_CFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_CFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_LDFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_LDFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_LIBS:
    case _CS_XBS5_LPBIG_OFFBIG_LIBS:
    case _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS:
    case _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS:
 
 
    case _CS_POSIX_V6_ILP32_OFF32_CFLAGS:
    case _CS_POSIX_V6_ILP32_OFF32_CFLAGS:
    case _CS_POSIX_V6_ILP32_OFF32_LDFLAGS:
    case _CS_POSIX_V6_ILP32_OFF32_LDFLAGS:
    case _CS_POSIX_V6_ILP32_OFF32_LIBS:
    case _CS_POSIX_V6_ILP32_OFF32_LIBS:
    case _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS:
    case _CS_POSIX_V6_ILP32_OFF32_LINTFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LIBS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LIBS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS:
    case _CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_CFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_CFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_LDFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_LDFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_LIBS:
    case _CS_POSIX_V6_LP64_OFF64_LIBS:
    case _CS_POSIX_V6_LP64_OFF64_LINTFLAGS:
    case _CS_POSIX_V6_LP64_OFF64_LINTFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LIBS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LIBS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS:
    case _CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS:
      /* GNU libc does not require special actions to use LFS functions.  */
      /* GNU libc does not require special actions to use LFS functions.  */
      string = "";
      string = "";
      string_len = 1;
      string_len = 1;
      break;
      break;
 
 
    default:
    default:
      __set_errno (EINVAL);
      __set_errno (EINVAL);
      return 0;
      return 0;
    }
    }
 
 
  if (len > 0 && buf != NULL)
  if (len > 0 && buf != NULL)
    {
    {
      if (string_len <= len)
      if (string_len <= len)
        memcpy (buf, string, string_len);
        memcpy (buf, string, string_len);
      else
      else
        {
        {
          memcpy (buf, string, len - 1);
          memcpy (buf, string, len - 1);
          buf[len - 1] = '\0';
          buf[len - 1] = '\0';
        }
        }
    }
    }
  return string_len;
  return string_len;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.