confstr.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* Copyright (C) 1991, 1996, 1997, 2000-2002, 2003, 2004
  2. Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <stddef.h>
  17. #include <errno.h>
  18. #include <unistd.h>
  19. #include <string.h>
  20. #define CS_PATH "/bin:/usr/bin"
  21. /* If BUF is not NULL and LEN > 0, fill in at most LEN - 1 bytes
  22. of BUF with the value corresponding to NAME and zero-terminate BUF.
  23. Return the number of bytes required to hold NAME's entire value. */
  24. size_t confstr (int name, char *buf, size_t len)
  25. {
  26. const char *string;
  27. size_t string_len;
  28. switch (name)
  29. {
  30. case _CS_PATH:
  31. {
  32. static const char cs_path[] = CS_PATH;
  33. string = cs_path;
  34. string_len = sizeof (cs_path);
  35. }
  36. break;
  37. #ifdef __UCLIBC_HAS_THREADS__
  38. case _CS_GNU_LIBPTHREAD_VERSION:
  39. # if defined __LINUXTHREADS_OLD__
  40. string = "linuxthreads-0.01";
  41. string_len = sizeof("linuxthreads-x.xx");
  42. # elif defined __LINUXTHREADS_NEW__
  43. string = "linuxthreads-0.10";
  44. string_len = sizeof("linuxthreads-x.xx");
  45. # elif defined __UCLIBC_HAS_THREADS_NATIVE__
  46. # define __NPTL_VERSION ("NPTL " \
  47. #__UCLIBC_MAJOR__ "." \
  48. #__UCLIBC_MINOR__ "." \
  49. #__UCLIBC_SUBLEVEL__)
  50. string = __NPTL_VERSION;
  51. string_len = sizeof(__NPTL_VERSION);
  52. # endif
  53. break;
  54. #endif
  55. default:
  56. __set_errno (EINVAL);
  57. return 0;
  58. }
  59. if (len > 0 && buf != NULL)
  60. {
  61. if (string_len <= len)
  62. memcpy (buf, string, string_len);
  63. else
  64. {
  65. memcpy (buf, string, len - 1);
  66. buf[len - 1] = '\0';
  67. }
  68. }
  69. return string_len;
  70. }