tst-initializers1.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Copyright (C) 2005-2019 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>, 2005.
  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, see
  14. <http://www.gnu.org/licenses/>. */
  15. /* We test the code undef conditions outside of glibc. */
  16. #undef _LIBC
  17. #include <pthread.h>
  18. pthread_mutex_t mtx_normal = PTHREAD_MUTEX_INITIALIZER;
  19. pthread_mutex_t mtx_recursive = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  20. pthread_mutex_t mtx_errorchk = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;
  21. pthread_mutex_t mtx_adaptive = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
  22. pthread_rwlock_t rwl_normal = PTHREAD_RWLOCK_INITIALIZER;
  23. pthread_rwlock_t rwl_writer
  24. = PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP;
  25. pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
  26. static int
  27. do_test (void)
  28. {
  29. if (mtx_normal.__data.__kind != PTHREAD_MUTEX_TIMED_NP)
  30. return 1;
  31. if (mtx_recursive.__data.__kind != PTHREAD_MUTEX_RECURSIVE_NP)
  32. return 2;
  33. if (mtx_errorchk.__data.__kind != PTHREAD_MUTEX_ERRORCHECK_NP)
  34. return 3;
  35. if (mtx_adaptive.__data.__kind != PTHREAD_MUTEX_ADAPTIVE_NP)
  36. return 4;
  37. if (rwl_normal.__data.__flags != PTHREAD_RWLOCK_PREFER_READER_NP)
  38. return 5;
  39. if (rwl_writer.__data.__flags
  40. != PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP)
  41. return 6;
  42. /* <libc-lock.h> __libc_rwlock_init definition for libc.so
  43. relies on PTHREAD_RWLOCK_INITIALIZER being all zeros. If
  44. that ever changes, <libc-lock.h> needs updating. */
  45. size_t i;
  46. for (i = 0; i < sizeof (rwl_normal); i++)
  47. if (((char *) &rwl_normal)[i] != '\0')
  48. return 7;
  49. return 0;
  50. }
  51. #define TEST_FUNCTION do_test ()
  52. #include "../test-skeleton.c"