confstr.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. __stringify(__UCLIBC_MAJOR__) "." \
  48. __stringify(__UCLIBC_MINOR__) "." \
  49. __stringify(__UCLIBC_SUBLEVEL__))
  50. string = __NPTL_VERSION;
  51. string_len = sizeof(__NPTL_VERSION);
  52. # else
  53. # error unable to determine thread impl
  54. # endif
  55. break;
  56. #endif
  57. default:
  58. __set_errno (EINVAL);
  59. return 0;
  60. }
  61. if (len > 0 && buf != NULL)
  62. {
  63. if (string_len <= len)
  64. memcpy (buf, string, string_len);
  65. else
  66. {
  67. memcpy (buf, string, len - 1);
  68. buf[len - 1] = '\0';
  69. }
  70. }
  71. return string_len;
  72. }