libc-internal.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /* Copyright (C) 1991,92,93,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. #ifndef _LIBC_INTERNAL_H
  16. #define _LIBC_INTERNAL_H 1
  17. #include <features.h>
  18. #ifdef __UCLIBC_BUILD_RELRO__
  19. # define attribute_relro __attribute__ ((section (".data.rel.ro")))
  20. #else
  21. # define attribute_relro
  22. #endif
  23. #ifdef __UCLIBC_HAS_TLS__
  24. # define attribute_tls_model_ie __attribute__ ((tls_model ("initial-exec")))
  25. #else
  26. # define attribute_tls_model_ie
  27. # define __thread
  28. #endif
  29. /* Pull in things like __attribute_used__ */
  30. #include <sys/cdefs.h>
  31. /* --- this is added to integrate linuxthreads */
  32. /*#define __USE_UNIX98 1*/
  33. #ifndef __ASSEMBLER__
  34. # ifdef IS_IN_libc
  35. # define __need_size_t
  36. # include <stddef.h>
  37. /* sources are built w/ _GNU_SOURCE, this gets undefined */
  38. #if defined __USE_XOPEN2K && !defined __USE_GNU
  39. extern char *__glibc_strerror_r (int __errnum, char *__buf, size_t __buflen);
  40. libc_hidden_proto(__glibc_strerror_r)
  41. #else
  42. extern int __xpg_strerror_r (int __errnum, char *__buf, size_t __buflen);
  43. libc_hidden_proto(__xpg_strerror_r)
  44. #endif
  45. /* #include <pthread.h> */
  46. # ifndef __UCLIBC_HAS_THREADS__
  47. # define __pthread_mutex_init(mutex, mutexattr) ((void)0)
  48. # define __pthread_mutex_lock(mutex) ((void)0)
  49. # define __pthread_mutex_trylock(mutex) ((void)0)
  50. # define __pthread_mutex_unlock(mutex) ((void)0)
  51. # define _pthread_cleanup_push_defer(mutex) ((void)0)
  52. # define _pthread_cleanup_pop_restore(mutex) ((void)0)
  53. # endif
  54. /* internal access to program name */
  55. extern const char *__uclibc_progname attribute_hidden;
  56. # ifdef __UCLIBC_HAS_FORTIFY__
  57. extern void __chk_fail(void) attribute_noreturn;
  58. libc_hidden_proto(__chk_fail)
  59. # endif
  60. # ifdef __UCLIBC_HAS_SSP__
  61. extern void __stack_chk_fail(void) attribute_noreturn __cold;
  62. # endif
  63. # endif /* IS_IN_libc */
  64. #endif /* __ASSEMBLER__ */
  65. #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
  66. /* Some people like to build up uClibc with *-elf toolchains, so
  67. * a little grease here until we drop '#ifdef __linux__' checks
  68. * from our source code.
  69. */
  70. #ifndef __linux__
  71. # define __linux__ 1
  72. #endif
  73. #endif /* _LIBC_INTERNAL_H */