cancel1.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * File: cancel1.c
  3. *
  4. *
  5. * --------------------------------------------------------------------------
  6. *
  7. * Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems
  8. * Copyright(C) 2008 Jason Schmidlapp
  9. *
  10. * Contact Email: [email protected]
  11. *
  12. *
  13. * Based upon Pthreads-win32 - POSIX Threads Library for Win32
  14. * Copyright(C) 1998 John E. Bossom
  15. * Copyright(C) 1999,2005 Pthreads-win32 contributors
  16. *
  17. * Contact Email: [email protected]
  18. *
  19. * The original list of contributors to the Pthreads-win32 project
  20. * is contained in the file CONTRIBUTORS.ptw32 included with the
  21. * source code distribution. The list can also be seen at the
  22. * following World Wide Web location:
  23. * http://sources.redhat.com/pthreads-win32/contributors.html
  24. *
  25. * This library is free software; you can redistribute it and/or
  26. * modify it under the terms of the GNU Lesser General Public
  27. * License as published by the Free Software Foundation; either
  28. * version 2 of the License, or (at your option) any later version.
  29. *
  30. * This library is distributed in the hope that it will be useful,
  31. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  32. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  33. * Lesser General Public License for more details.
  34. *
  35. * You should have received a copy of the GNU Lesser General Public
  36. * License along with this library in the file COPYING.LIB;
  37. * if not, write to the Free Software Foundation, Inc.,
  38. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
  39. *
  40. * --------------------------------------------------------------------------
  41. *
  42. * Test Synopsis: Test setting cancel state and cancel type.
  43. * -
  44. *
  45. * Test Method (Validation or Falsification):
  46. * -
  47. *
  48. * Requirements Tested:
  49. * - pthread_setcancelstate function
  50. * - pthread_setcanceltype function
  51. *
  52. * Features Tested:
  53. * -
  54. *
  55. * Cases Tested:
  56. * -
  57. *
  58. * Description:
  59. * -
  60. *
  61. * Environment:
  62. * -
  63. *
  64. * Input:
  65. * - None.
  66. *
  67. * Output:
  68. * - File name, Line number, and failed expression on failure.
  69. * - No output on success.
  70. *
  71. * Assumptions:
  72. * - pthread_create, pthread_self work.
  73. *
  74. * Pass Criteria:
  75. * - Process returns zero exit status.
  76. *
  77. * Fail Criteria:
  78. * - Process returns non-zero exit status.
  79. */
  80. #include "test.h"
  81. /*
  82. * Create NUMTHREADS threads in addition to the Main thread.
  83. */
  84. enum
  85. {
  86. NUMTHREADS = 2
  87. };
  88. typedef struct bag_t_ bag_t;
  89. struct bag_t_
  90. {
  91. int threadnum;
  92. int started;
  93. /* Add more per-thread state variables here */
  94. };
  95. static bag_t threadbag[NUMTHREADS + 1];
  96. static void *
  97. mythread(void * arg)
  98. {
  99. bag_t * bag = (bag_t *) arg;
  100. assert(bag == &threadbag[bag->threadnum]);
  101. assert(bag->started == 0);
  102. bag->started = 1;
  103. /* ... */
  104. {
  105. int oldstate;
  106. assert(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate) == 0);
  107. assert(oldstate == PTHREAD_CANCEL_ENABLE); /* Check default */
  108. assert(pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == 0);
  109. assert(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL) == 0);
  110. assert(pthread_setcancelstate(oldstate, &oldstate) == 0);
  111. assert(oldstate == PTHREAD_CANCEL_DISABLE); /* Check setting */
  112. /* We don't support async cancellation so all of these tests would fail... */
  113. #if 0
  114. int oldtype;
  115. assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype) == 0);
  116. assert(oldtype == PTHREAD_CANCEL_DEFERRED); /* Check default */
  117. assert(pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, NULL) == 0);
  118. assert(pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == 0);
  119. assert(pthread_setcanceltype(oldtype, &oldtype) == 0);
  120. assert(oldtype == PTHREAD_CANCEL_ASYNCHRONOUS); /* Check setting */
  121. #endif //0
  122. }
  123. return 0;
  124. }
  125. int pthread_test_cancel1()
  126. {
  127. int failed = 0;
  128. int i;
  129. pthread_t t[NUMTHREADS + 1];
  130. assert((t[0] = pthread_self()).p != NULL);
  131. for (i = 1; i <= NUMTHREADS; i++)
  132. {
  133. threadbag[i].started = 0;
  134. threadbag[i].threadnum = i;
  135. assert(pthread_create(&t[i], NULL, mythread, (void *) &threadbag[i]) == 0);
  136. }
  137. /*
  138. * Code to control or munipulate child threads should probably go here.
  139. */
  140. /*
  141. * Give threads time to run.
  142. */
  143. pte_osThreadSleep(NUMTHREADS * 1000);
  144. /*
  145. * Standard check that all threads started.
  146. */
  147. for (i = 1; i <= NUMTHREADS; i++)
  148. {
  149. failed = !threadbag[i].started;
  150. if (failed)
  151. {
  152. fprintf(stderr, "Thread %d: started %d\n", i, threadbag[i].started);
  153. }
  154. }
  155. assert(!failed);
  156. for (i = 1; i <= NUMTHREADS; i++)
  157. {
  158. assert(pthread_join(t[i],NULL) == 0);
  159. }
  160. assert(!failed);
  161. /*
  162. * Success.
  163. */
  164. return 0;
  165. }