tst-initializers1.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Copyright (C) 2005 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. #include <pthread.h>
  16. #if defined(__GLIBC__) || defined(__UCLIBC__)
  17. pthread_mutex_t mtx_normal = PTHREAD_MUTEX_INITIALIZER;
  18. pthread_mutex_t mtx_recursive = PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP;
  19. pthread_mutex_t mtx_errorchk = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;
  20. pthread_mutex_t mtx_adaptive = PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
  21. pthread_rwlock_t rwl_normal = PTHREAD_RWLOCK_INITIALIZER;
  22. pthread_rwlock_t rwl_writer
  23. = PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP;
  24. pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
  25. #endif
  26. int
  27. main (void)
  28. {
  29. #if defined(__GLIBC__) || defined(__UCLIBC__)
  30. if (mtx_normal.__data.__kind != PTHREAD_MUTEX_TIMED_NP)
  31. return 1;
  32. if (mtx_recursive.__data.__kind != PTHREAD_MUTEX_RECURSIVE_NP)
  33. return 1;
  34. if (mtx_errorchk.__data.__kind != PTHREAD_MUTEX_ERRORCHECK_NP)
  35. return 1;
  36. if (mtx_adaptive.__data.__kind != PTHREAD_MUTEX_ADAPTIVE_NP)
  37. return 1;
  38. if (rwl_normal.__data.__flags != PTHREAD_RWLOCK_PREFER_READER_NP)
  39. return 1;
  40. if (rwl_writer.__data.__flags
  41. != PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP)
  42. return 1;
  43. return 0;
  44. #else
  45. return 23;
  46. #endif
  47. }