tst-rwlock13.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (C) 2004 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. #include <pthread.h>
  16. #include <stdio.h>
  17. #include <string.h>
  18. static int
  19. do_test (void)
  20. {
  21. pthread_rwlock_t r;
  22. int ret;
  23. memset (&r, 0xaa, sizeof (r));
  24. if ((ret = pthread_rwlock_init (&r, NULL)) != 0)
  25. {
  26. printf ("rwlock_init failed: %d\n", ret);
  27. return 1;
  28. }
  29. if ((ret = pthread_rwlock_rdlock (&r)) != 0)
  30. {
  31. printf ("rwlock_rdlock failed: %d\n", ret);
  32. return 1;
  33. }
  34. if ((ret = pthread_rwlock_unlock (&r)) != 0)
  35. {
  36. printf ("rwlock_unlock failed: %d\n", ret);
  37. return 1;
  38. }
  39. if ((ret = pthread_rwlock_wrlock (&r)) != 0)
  40. {
  41. printf ("rwlock_wrlock failed: %d\n", ret);
  42. return 1;
  43. }
  44. if ((ret = pthread_rwlock_unlock (&r)) != 0)
  45. {
  46. printf ("second rwlock_unlock failed: %d\n", ret);
  47. return 1;
  48. }
  49. if ((ret = pthread_rwlock_destroy (&r)) != 0)
  50. {
  51. printf ("second rwlock_destroy failed: %d\n", ret);
  52. return 1;
  53. }
  54. return 0;
  55. }
  56. #define TEST_FUNCTION do_test ()
  57. #include "../test-skeleton.c"