tsd1.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * tsd1.c
  3. *
  4. * Test Thread Specific Data (TSD) key creation and destruction.
  5. *
  6. *
  7. * --------------------------------------------------------------------------
  8. *
  9. * Pthreads-win32 - POSIX Threads Library for Win32
  10. * Copyright(C) 1998 John E. Bossom
  11. * Copyright(C) 1999,2005 Pthreads-win32 contributors
  12. *
  13. * Contact Email: [email protected]
  14. *
  15. * The current list of contributors is contained
  16. * in the file CONTRIBUTORS included with the source
  17. * code distribution. The list can also be seen at the
  18. * following World Wide Web location:
  19. * http://sources.redhat.com/pthreads-win32/contributors.html
  20. *
  21. * This library is free software; you can redistribute it and/or
  22. * modify it under the terms of the GNU Lesser General Public
  23. * License as published by the Free Software Foundation; either
  24. * version 2 of the License, or (at your option) any later version.
  25. *
  26. * This library is distributed in the hope that it will be useful,
  27. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  28. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  29. * Lesser General Public License for more details.
  30. *
  31. * You should have received a copy of the GNU Lesser General Public
  32. * License along with this library in the file COPYING.LIB;
  33. * if not, write to the Free Software Foundation, Inc.,
  34. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  35. *
  36. *
  37. * --------------------------------------------------------------------------
  38. *
  39. * Description:
  40. * -
  41. *
  42. * Test Method (validation or falsification):
  43. * - validation
  44. *
  45. * Requirements Tested:
  46. * - keys are created for each existing thread including the main thread
  47. * - keys are created for newly created threads
  48. * - keys are thread specific
  49. * - destroy routine is called on each thread exit including the main thread
  50. *
  51. * Features Tested:
  52. * -
  53. *
  54. * Cases Tested:
  55. * -
  56. *
  57. * Environment:
  58. * -
  59. *
  60. * Input:
  61. * - none
  62. *
  63. * Output:
  64. * - text to stdout
  65. *
  66. * Assumptions:
  67. * - already validated: pthread_create()
  68. * pthread_once()
  69. * - main thread also has a POSIX thread identity
  70. *
  71. * Pass Criteria:
  72. * - stdout matches file reference/tsd1.out
  73. *
  74. * Fail Criteria:
  75. * - fails to match file reference/tsd1.out
  76. * - output identifies failed component
  77. */
  78. #include <sched.h>
  79. #include "test.h"
  80. enum {
  81. NUM_THREADS = 100
  82. };
  83. static pthread_key_t key = NULL;
  84. static int accesscount[NUM_THREADS];
  85. static int thread_set[NUM_THREADS];
  86. static int thread_destroyed[NUM_THREADS];
  87. static pthread_barrier_t startBarrier;
  88. static void
  89. destroy_key(void * arg)
  90. {
  91. int * j = (int *) arg;
  92. (*j)++;
  93. assert(*j == 2);
  94. thread_destroyed[j - accesscount] = 1;
  95. }
  96. static void
  97. setkey(void * arg)
  98. {
  99. int * j = (int *) arg;
  100. thread_set[j - accesscount] = 1;
  101. assert(*j == 0);
  102. assert(pthread_getspecific(key) == NULL);
  103. assert(pthread_setspecific(key, arg) == 0);
  104. assert(pthread_setspecific(key, arg) == 0);
  105. assert(pthread_setspecific(key, arg) == 0);
  106. assert(pthread_getspecific(key) == arg);
  107. (*j)++;
  108. assert(*j == 1);
  109. }
  110. static void *
  111. mythread(void * arg)
  112. {
  113. (void) pthread_barrier_wait(&startBarrier);
  114. setkey(arg);
  115. return 0;
  116. /* Exiting the thread will call the key destructor. */
  117. }
  118. int
  119. main()
  120. {
  121. int i;
  122. int fail = 0;
  123. pthread_t thread[NUM_THREADS];
  124. assert(pthread_barrier_init(&startBarrier, NULL, NUM_THREADS/2) == 0);
  125. for (i = 1; i < NUM_THREADS/2; i++)
  126. {
  127. accesscount[i] = thread_set[i] = thread_destroyed[i] = 0;
  128. assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0);
  129. }
  130. /*
  131. * Here we test that existing threads will get a key created
  132. * for them.
  133. */
  134. assert(pthread_key_create(&key, destroy_key) == 0);
  135. (void) pthread_barrier_wait(&startBarrier);
  136. /*
  137. * Test main thread key.
  138. */
  139. accesscount[0] = 0;
  140. setkey((void *) &accesscount[0]);
  141. /*
  142. * Here we test that new threads will get a key created
  143. * for them.
  144. */
  145. for (i = NUM_THREADS/2; i < NUM_THREADS; i++)
  146. {
  147. accesscount[i] = thread_set[i] = thread_destroyed[i] = 0;
  148. assert(pthread_create(&thread[i], NULL, mythread, (void *)&accesscount[i]) == 0);
  149. }
  150. /*
  151. * Wait for all threads to complete.
  152. */
  153. for (i = 1; i < NUM_THREADS; i++)
  154. {
  155. assert(pthread_join(thread[i], NULL) == 0);
  156. }
  157. assert(pthread_key_delete(key) == 0);
  158. assert(pthread_barrier_destroy(&startBarrier) == 0);
  159. for (i = 1; i < NUM_THREADS; i++)
  160. {
  161. /*
  162. * The counter is incremented once when the key is set to
  163. * a value, and again when the key is destroyed. If the key
  164. * doesn't get set for some reason then it will still be
  165. * NULL and the destroy function will not be called, and
  166. * hence accesscount will not equal 2.
  167. */
  168. if (accesscount[i] != 2)
  169. {
  170. fail++;
  171. fprintf(stderr, "Thread %d key, set = %d, destroyed = %d\n",
  172. i, thread_set[i], thread_destroyed[i]);
  173. }
  174. }
  175. fflush(stderr);
  176. return (fail);
  177. }