ChangeLog
上传用户:zhenyu
上传日期:2022-04-24
资源大小:268k
文件大小:181k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. (ptw32_processInitialize): Init new constant ptw32_exception_services.
  2. * create.c (pthread_create): Initialise thread's cancelLock
  3. mutex.
  4. * cleanup.c (pthread_pop_cleanup): Make 'catch' and '__except'
  5. usage immune to redfinition s in pthread.h.
  6. * private.c: Ditto.
  7. * pthread.h (catch): Redefine 'catch' so that C++ applications
  8. won't catch our internal exceptions.
  9. (__except): ditto for __except.
  10. * implement.h (ptw32_catch): Define internal version
  11. of 'catch' because 'catch' is redefined by pthread.h.
  12. (__except): ditto for __except.
  13. (struct pthread_t_): Add cancelLock mutex for async cancel
  14. safety.
  15. 1999-11-21  Jason Nye <jnye at nbnet.nb.ca>, Erik Hensema <erik.hensema at group2000.nl>
  16. * cancel.c (ptw32_cancel_self): New; part of the async
  17. cancellation implementation.
  18. (ptw32_cancel_thread): Ditto; this function is X86
  19. processor specific.
  20. (pthread_setcancelstate): Add check for pending async
  21. cancel request and cancel the calling thread if
  22. required; add async-cancel safety lock.
  23. (pthread_setcanceltype): Ditto.
  24. 1999-11-13  Erik Hensema <erik.hensema at group2000.nl>
  25. * configure.in (AC_OUTPUT): Put generated output into GNUmakefile
  26. rather than Makefile. Makefile will become the MSC nmake compatible
  27. version
  28. 1999-11-13  John Bossom (John.Bossom@cognos.com>
  29. * misc.c (pthread_self): Add a note about GetCurrentThread
  30. returning a pseudo-handle
  31. 1999-11-10  Todd Owen <towen at lucidcalm.dropbear.id.au>
  32. * dll.c (dllMain): Free kernel32 ASAP.
  33. If TryEnterCriticalSection is not being used, then free
  34. the kernel32.dll handle now, rather than leaving it until
  35. DLL_PROCESS_DETACH.
  36. Note: this is not a pedantic exercise in freeing unused
  37. resources!  It is a work-around for a bug in Windows 95
  38. (see microsoft knowledge base article, Q187684) which
  39. does Bad Things when FreeLibrary is called within
  40. the DLL_PROCESS_DETACH code, in certain situations.
  41. Since w95 just happens to be a platform which does not
  42. provide TryEnterCriticalSection, the bug will be
  43. effortlessly avoided.
  44. 1999-11-10  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  45. * sync.c (pthread_join): Make it a deferred cancelation point.
  46. * misc.c (pthread_self): Explicitly initialise implicitly
  47. created thread state to default values.
  48. 1999-11-05  Tristan Savatier <tristan at mpegtv.com>
  49. * pthread.h (winsock.h): Include unconditionally.
  50. (ETIMEDOUT): Change fallback value to that defined by winsock.h.
  51. * general: Patched for portability to WinCE. The details are
  52. described in the file WinCE-PORT. Follow the instructions
  53. in README.WinCE to make the appropriate changes in config.h.
  54. 1999-10-30  Erik Hensema <erik.hensema at group2000.nl>
  55. * create.c (pthread_create): Explicitly initialise thread state to
  56. default values.
  57. * cancel.c (pthread_setcancelstate): Check for NULL 'oldstate'
  58. for compatibility with Solaris pthreads;
  59. (pthread_setcanceltype): ditto:
  60. 1999-10-23  Erik Hensema <erik.hensema at group2000.nl>
  61. * pthread.h (ctime_r): Fix incorrect argument "_tm"
  62. 1999-10-21  Aurelio Medina <aureliom at crt.com>
  63. * pthread.h (_POSIX_THREADS): Only define it if it isn't
  64. already defined. Projects may need to define this on
  65. the CC command line under Win32 as it doesn't have unistd.h
  66. 1999-10-17  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  67. * rwlock.c (pthread_rwlock_destroy): Add cast to remove compile
  68. warning.
  69. * condvar.c (pthread_cond_broadcast): Only release semaphores
  70. if there are waiting threads.
  71. 1999-10-15  Lorin Hochstein <lmh at xiphos.ca>, Peter Slacik <Peter.Slacik at tatramed.sk>
  72. * condvar.c (cond_wait_cleanup): New static cleanup handler for
  73. cond_timedwait;
  74. (cond_timedwait): pthread_cleanup_push args changed;
  75. canceling a thread while it's in pthread_cond_wait
  76. will now decrement the waiters count and cleanup if it's the
  77. last waiter.
  78. 1999-10-15  Graham Dumpleton <Graham.Dumpleton at ra.pad.otc.telstra.com.au>
  79. * condvar.c (cond_wait_cleanup): the last waiter will now reset the CV's
  80. wasBroadcast flag
  81. Thu Sep 16 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  82. * rwlock.c (pthread_rwlock_destroy): Add serialisation.
  83. (_rwlock_check_need_init): Check for detroyed rwlock.
  84. * rwlock.c: Check return codes from _rwlock_check_need_init();
  85. modify comments; serialise access to rwlock objects during
  86. operations; rename rw_mutex to rw_lock.
  87. * implement.h: Rename rw_mutex to rw_lock.
  88. * mutex.c (pthread_mutex_destroy): Add serialisation.
  89. (_mutex_check_need_init): Check for detroyed mutex.
  90. * condvar.c (pthread_cond_destroy): Add serialisation.
  91. (_cond_check_need_init): Check for detroyed condvar.
  92. * mutex.c: Modify comments.
  93. * condvar.c: Modify comments.
  94. 1999-08-10  Aurelio Medina  <aureliom at crt.com>
  95. * implement.h (pthread_rwlock_t_): Add.
  96. * pthread.h (pthread_rwlock_t): Add.
  97. (PTHREAD_RWLOCK_INITIALIZER): Add.
  98. Add rwlock function prototypes.
  99. * rwlock.c: New module.
  100. * pthread.def: Add new rwlock functions.
  101. * private.c (ptw32_processInitialize): initialise
  102. ptw32_rwlock_test_init_lock critical section.
  103. * global.c (ptw32_rwlock_test_init_lock): Add.
  104. * mutex.c (pthread_mutex_destroy): Don't free mutex memory
  105. if mutex is PTHREAD_MUTEX_INITIALIZER and has not been
  106. initialised yet.
  107. 1999-08-08 Milan Gardian <mg at tatramed.sk>
  108. * mutex.c (pthread_mutex_destroy): Free mutex memory.
  109. 1999-08-22  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  110. * exit.c (pthread_exit): Fix reference to potentially
  111. uninitialised pointer.
  112. 1999-08-21  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  113. * private.c (ptw32_threadStart): Apply fix of 1999-08-19
  114. this time to C++ and non-trapped C versions. Ommitted to
  115. do this the first time through.
  116. 1999-08-19  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  117. * private.c (ptw32_threadStart): Return exit status from
  118. the application thread startup routine.
  119. - Milan Gardian <mg at tatramed.sk>
  120. 1999-08-18  John Bossom <john.Bossom at cognos.com>
  121. * exit.c (pthread_exit): Put status into pthread_t->exitStatus
  122. * private.c (ptw32_threadStart): Set pthread->exitStatus
  123. on exit of try{} block.
  124. * sync.c (pthread_join): use pthread_exitStatus value if the
  125. thread exit doesn't return a value (for Mingw32 CRTDLL
  126. which uses endthread instead of _endthreadex).
  127. Tue Aug 17 20:17:58 CDT 1999  Mumit Khan  <khan at xraylith.wisc.edu>
  128.         * create.c (pthread_create): Add CRTDLL suppport.
  129.         * exit.c (pthread_exit): Likewise.
  130.         * private.c (ptw32_threadStart): Likewise.
  131.         (ptw32_threadDestroy): Likewise.
  132.         * sync.c (pthread_join): Likewise.
  133.         * tests/join1.c (main): Warn about partial support for CRTDLL.
  134. Tue Aug 17 20:00:08 1999  Mumit Khan  <khan at xraylith.wisc.edu>
  135.         * Makefile.in (LD): Delete entry point.
  136.         * acconfig.h (STDCALL): Delete unused macro.
  137.         * configure.in: Remove test for STDCALL.
  138.         * config.h.in: Regenerate.
  139.         * errno.c (_errno): Fix self type.
  140.         * pthread.h (PT_STDCALL): Move from here to
  141.         * implement.h (PT_STDCALL): here.
  142.         (ptw32_threadStart): Fix prototype.
  143.         * private.c (ptw32_threadStart): Likewise.
  144. 1999-08-14  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  145. * exit.c (pthread_exit): Don't call pthread_self() but
  146. get thread handle directly from TSD for efficiency.
  147. 1999-08-12  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  148. * private.c (ptw32_threadStart): ei[] only declared if _MSC_VER.
  149. * exit.c (pthread_exit): Check for implicitly created threads
  150. to avoid raising an unhandled exception.
  151. 1999-07-12  Peter Slacik <Peter.Slacik at tatramed.sk>
  152. * condvar.c (pthread_cond_destroy): Add critical section.
  153. (cond_timedwait): Add critical section; check for timeout
  154. waiting on semaphore.
  155. (pthread_cond_broadcast): Add critical section.
  156. 1999-07-09  Lorin Hochstein <lmh at xiphos.ca>, John Bossom <John.Bossom at Cognos.COM>
  157. The problem was that cleanup handlers were not executed when
  158. pthread_exit() was called.
  159. * implement.h (pthread_t_): Add exceptionInformation element for
  160. C++ per-thread exception information.
  161. (general): Define and rename exceptions.
  162. 1999-07-09  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  163. * misc.c (CancelableWait):  PTW32_EPS_CANCEL (SEH) and
  164. ptw32_exception_cancel (C++) used to identify the exception.
  165. * cancel.c (pthread_testcancel): PTW32_EPS_CANCEL (SEH) and
  166. ptw32_exception_cancel (C++) used to identify the exception.
  167. * exit.c (pthread_exit): throw/raise an exception to return to
  168. ptw32_threadStart() to exit the thread. PTW32_EPS_EXIT (SEH)
  169. and ptw32_exception_exit (C++) used to identify the exception.
  170. * private.c (ptw32_threadStart): Add pthread_exit exception trap;
  171. clean up and exit the thread directly rather than via pthread_exit().
  172. Sun May 30 00:25:02 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  173. * semaphore.h (mode_t): Conditionally typedef it.
  174. Fri May 28 13:33:05 1999  Mark E. Armstrong <avail at pacbell.net>
  175. * condvar.c (pthread_cond_broadcast): Fix possible memory fault
  176. Thu May 27 13:08:46 1999  Peter Slacik <Peter.Slacik at tatramed.sk>
  177. * condvar.c (pthread_cond_broadcast): Fix logic bug
  178. Thu May 27 13:08:46 1999  Bossom, John <John.Bossom at Cognos.COM>
  179. * condvar.c (pthread_cond_broadcast): optimise sem_post loop
  180. Fri May 14 12:13:18 1999  Mike Russo <miker at eai.com>
  181. * attr.c (pthread_attr_setdetachstate): Fix logic bug
  182. Sat May  8 09:42:30 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  183. * pthread.def (sem_open): Add.
  184. (sem_close): Add.
  185. (sem_unlink): Add.
  186. (sem_getvalue): Add.
  187. * FAQ (Question 3): Add.
  188. Thu Apr  8 01:16:23 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  189. * semaphore.c (sem_open): New function; returns an error (ENOSYS).
  190. (sem_close): ditto.
  191. (sem_unlink): ditto.
  192. (sem_getvalue): ditto.
  193. * semaphore.h (_POSIX_SEMAPHORES): define.
  194. Wed Apr  7 14:09:52 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  195. * errno.c (_REENTRANT || _MT): Invert condition.
  196. * pthread.h (_errno): Conditionally include prototype.
  197. Wed Apr  7 09:37:00 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  198. * *.c (comments): Remove individual attributions - these are
  199. documented sufficiently elsewhere.
  200. * implement.h (pthread.h): Remove extraneous include.
  201. Sun Apr  4 11:05:57 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  202. * sched.c (sched.h): Include.
  203. * sched.h: New file for POSIX 1b scheduling.
  204. * pthread.h: Move opaque structures to implement.h; move sched_*
  205. prototypes out and into sched.h.
  206. * implement.h: Add opaque structures from pthread.h.
  207. * sched.c (sched_yield): New function.
  208. * condvar.c (ptw32_sem_*): Rename to sem_*; except for
  209. ptw32_sem_timedwait which is an private function.
  210. Sat Apr  3 23:28:00 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  211. * Makefile.in (OBJS): Add errno.o.
  212. Fri Apr  2 11:08:50 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  213. * implement.h (ptw32_sem_*): Remove prototypes now defined in
  214. semaphore.h.
  215. * pthread.h (sempahore.h): Include.
  216. * semaphore.h: New file for POSIX 1b semaphores.
  217. * semaphore.c (ptw32_sem_timedwait): Moved to private.c.
  218. * pthread.h (ptw32_sem_t): Change to sem_t. 
  219. * private.c (ptw32_sem_timedwait): Moved from semaphore.c;
  220. set errno on error.
  221. * pthread.h (pthread_t_): Add per-thread errno element.
  222. Fri Apr  2 11:08:50 1999  John Bossom <jebossom at cognos.com>
  223. * semaphore.c (ptw32_sem_*): Change to sem_*; these functions
  224. will be exported from the library; set errno on error.
  225. * errno.c (_errno): New file. New function.
  226. Fri Mar 26 14:11:45 1999  Tor Lillqvist <tml at iki.fi>
  227. * semaphore.c (ptw32_sem_timedwait): Check for negative
  228. milliseconds.
  229. Wed Mar 24 11:32:07 1999  John Bossom <jebossom at cognos.com>
  230. * misc.c (CancelableWait): Initialise exceptionInformation[2].
  231. (pthread_self): Get a real Win32 thread handle for implicit threads.
  232. * cancel.c (pthread_testcancel): Initialise exceptionInformation[2].
  233. * implement.h (SE_INFORMATION): Fix values.
  234. * private.c (ptw32_threadDestroy): Close the thread handle.
  235. Fri Mar 19 12:57:27 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  236. * cancel.c (comments): Update and cleanup.
  237. Fri Mar 19 09:12:59 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  238. * private.c (ptw32_threadStart): status returns PTHREAD_CANCELED.
  239. * pthread.h (PTHREAD_CANCELED): defined.
  240. Tue Mar 16  1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  241. * all: Add GNU LGPL and Copyright and Warranty.
  242. Mon Mar 15 00:20:13 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  243. * condvar.c (pthread_cond_init): fix possible uninitialised use
  244. of cv.
  245. Sun Mar 14 21:01:59 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  246. * condvar.c (pthread_cond_destroy): don't do full cleanup if
  247. static initialised cv has never been used.
  248. (cond_timedwait): check result of auto-initialisation.
  249. Thu Mar 11 09:01:48 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  250. * pthread.h (pthread_mutex_t): revert to (pthread_mutex_t *);
  251. define a value to serve as PTHREAD_MUTEX_INITIALIZER.
  252. (pthread_mutex_t_): remove staticinit and valid elements.
  253. (pthread_cond_t): revert to (pthread_cond_t_ *);
  254. define a value to serve as PTHREAD_COND_INITIALIZER.
  255. (pthread_cond_t_): remove staticinit and valid elements.
  256. * mutex.c (pthread_mutex_t args): adjust indirection of references.
  257. (all functions): check for PTHREAD_MUTEX_INITIALIZER value;
  258. check for NULL (invalid).
  259. * condvar.c (pthread_cond_t args): adjust indirection of references.
  260. (all functions): check for PTHREAD_COND_INITIALIZER value;
  261. check for NULL (invalid).
  262. Wed Mar 10 17:18:12 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  263. * misc.c (CancelableWait): Undo changes from Mar 8 and 7.
  264. Mon Mar  8 11:18:59 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  265. * misc.c (CancelableWait): Ensure cancelEvent handle is the lowest
  266. indexed element in the handles array. Enhance test for abandoned
  267. objects.
  268. * pthread.h (PTHREAD_MUTEX_INITIALIZER): Trailing elements not
  269. initialised are set to zero by the compiler. This avoids the
  270. problem of initialising the opaque critical section element in it.
  271. (PTHREAD_COND_INITIALIZER): Ditto.
  272. * semaphore.c (ptw32_sem_timedwait): Check sem == NULL earlier.
  273. Sun Mar  7 12:31:14 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  274. * condvar.c (pthread_cond_init): set semaphore initial value
  275. to 0, not 1. cond_timedwait was returning signaled immediately.
  276. * misc.c (CancelableWait): Place the cancel event handle first
  277. in the handle table for WaitForMultipleObjects. This ensures that
  278. the cancel event is recognised and acted apon if both objects
  279. happen to be signaled together.
  280. * private.c (ptw32_cond_test_init_lock): Initialise and destroy.
  281. * implement.h (ptw32_cond_test_init_lock): Add extern.
  282. * global.c (ptw32_cond_test_init_lock): Add declaration. 
  283. * condvar.c (pthread_cond_destroy): check for valid initialised CV;
  284. flag destroyed CVs as invalid.
  285. (pthread_cond_init): pthread_cond_t is no longer just a pointer.
  286. This is because PTHREAD_COND_INITIALIZER needs state info to reside
  287. in pthread_cond_t so that it can initialise on first use. Will work on
  288. making pthread_cond_t (and other objects like it) opaque again, if
  289. possible, later.
  290. (cond_timedwait): add check for statically initialisation of
  291. CV; initialise on first use.
  292. (pthread_cond_signal): check for valid CV.
  293. (pthread_cond_broadcast): check for valid CV.
  294. (_cond_check_need_init): Add.
  295. * pthread.h (PTHREAD_COND_INITIALIZER): Fix.
  296. (pthread_cond_t): no longer a pointer to pthread_cond_t_.
  297. (pthread_cond_t_): add 'staticinit' and 'valid' elements.
  298. Sat Mar 6 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  299. * implement.h: Undate comments.
  300. Sun Feb 21 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  301. * pthread.h (PTHREAD_MUTEX_INITIALIZER): missing braces around
  302. cs element initialiser.
  303. 1999-02-21  Ben Elliston  <bje at cygnus.com>
  304. * pthread.h (pthread_exit): The return type of this function is
  305. void, not int.
  306. * exit.c (pthread_exit): Do not return 0.
  307. Sat Feb 20 16:03:30 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  308. * dll.c (DLLMain): Expand TryEnterCriticalSection support test.
  309. * mutex.c (pthread_mutex_trylock): The check for
  310. ptw32_try_enter_critical_section == NULL should have been
  311. removed long ago.
  312. Fri Feb 19 16:03:30 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  313. * sync.c (pthread_join): Fix pthread_equal() test.
  314. * mutex.c (pthread_mutex_trylock): Check mutex != NULL before
  315. using it.
  316. Thu Feb 18 16:17:30 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  317. * misc.c (pthread_equal): Fix inverted result.
  318. * Makefile.in: Use libpthread32.a as the name of the DLL export
  319. library instead of pthread.lib.
  320. * condvar.c (pthread_cond_init): cv could have been used unitialised;
  321. initialise.
  322. * create.c (pthread_create): parms could have been used unitialised;
  323. initialise.
  324. * pthread.h (struct pthread_once_t_): Remove redefinition.
  325. Sat Feb 13 03:03:30 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  326. * pthread.h (struct pthread_once_t_): Replaced.
  327. * misc.c (pthread_once): Replace with John Bossom's version;
  328. has lighter weight serialisation; fixes problem of not holding
  329. competing threads until after the init_routine completes.
  330. Thu Feb 11 13:34:14 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  331. * misc.c (CancelableWait): Change C++ exception throw.
  332. * sync.c (pthread_join): Change FIXME comment - issue resolved.
  333. Wed Feb 10 12:49:11 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  334. * configure: Various temporary changes.
  335. - Kevin Ruland <Kevin.Ruland at anheuser-busch.com>
  336. * README: Update.
  337. * pthread.def (pthread_attr_getstackaddr): uncomment
  338. (pthread_attr_setstackaddr): uncomment
  339. Fri Feb  5 13:42:30 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  340. * semaphore.c: Comment format changes.
  341. Thu Feb  4 10:07:28 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  342. * global.c: Remove ptw32_exception instantiation.
  343. * cancel.c (pthread_testcancel): Change C++ exception throw.
  344. * implement.h: Remove extern declaration.
  345. Wed Feb  3 13:04:44 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  346. * cleanup.c: Rename ptw32_*_cleanup() to pthread_*_cleanup().
  347. * pthread.def: Ditto.
  348. * pthread.h: Ditto.
  349. * pthread.def (pthread_cleanup_push): Remove from export list;
  350. the function is defined as a macro under all compilers.
  351. (pthread_cleanup_pop): Ditto.
  352. * pthread.h: Remove #if defined().
  353. Wed Feb  3 10:13:48 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  354. * sync.c (pthread_join): Check for NULL value_ptr arg;
  355. check for detached threads.
  356. Tue Feb  2 18:07:43 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  357. * implement.h: Add #include <pthread.h>.
  358. Change sem_t to ptw32_sem_t.
  359. Tue Feb  2 18:07:43 1999  Kevin Ruland <Kevin.Ruland at anheuser-busch.com>
  360. * signal.c (pthread_sigmask): Add and modify casts.
  361. Reverse LHS/RHS bitwise assignments.
  362. * pthread.h: Remove #include <semaphore.h>.
  363. (PTW32_ATTR_VALID): Add cast.
  364. (struct pthread_t_): Add sigmask element.
  365. * dll.c: Add "extern C" for DLLMain.
  366. (DllMain): Add cast.
  367. * create.c (pthread_create): Set sigmask in thread.
  368. * condvar.c: Remove #include. Change sem_* to ptw32_sem_*.
  369. * attr.c: Changed #include.
  370. * Makefile.in: Additional targets and changes to build the library
  371. as a DLL.
  372. Fri Jan 29 11:56:28 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  373. * Makefile.in (OBJS): Add semaphore.o to list.
  374. * semaphore.c (ptw32_sem_timedwait): Move from private.c.
  375. Rename sem_* to ptw32_sem_*.
  376. * pthread.h (pthread_cond_t): Change type of sem_t.
  377. _POSIX_SEMAPHORES no longer defined.
  378. * semaphore.h: Contents moved to implement.h.
  379. Removed from source tree.
  380. * implement.h: Add semaphore function prototypes and rename all
  381. functions to prepend 'ptw32_'. They are
  382. now private to the pthreads-win32 implementation.
  383. * private.c: Change #warning.
  384. Move ptw32_sem_timedwait() to semaphore.c.
  385. * cleanup.c: Change #warning.
  386. * misc.c: Remove #include <errno.h>
  387. * pthread.def: Cleanup CVS merge conflicts.
  388. * global.c: Ditto.
  389. * ChangeLog: Ditto.
  390. * cleanup.c: Ditto.
  391. Sun Jan 24 01:34:52 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  392. * semaphore.c (sem_wait): Remove second arg to 
  393. pthreadCancelableWait() call.
  394. Sat Jan 23 17:36:40 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  395. * pthread.def: Add new functions to export list.
  396. * pthread.h (PTHREAD_MUTEX_AUTO_CS_NP): New.
  397. (PTHREAD_MUTEX_FORCE_CS_NP): New.
  398. * README: Updated.
  399. Fri Jan 22 14:31:59 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  400. * Makefile.in (CFLAGS): Remove -fhandle-exceptions. Not needed
  401. with egcs. Add -g for debugging.
  402. * create.c (pthread_create): Replace __stdcall with PT_STDCALL
  403. macro. This is a hack and must be fixed.
  404. * misc.c (CancelableWait): Remove redundant statement.
  405. * mutex.c (pthread_mutexattr_init): Cast calloc return value.
  406. * misc.c (CancelableWait): Add cast.
  407. (pthread_self): Add cast.
  408. * exit.c (pthread_exit): Add cast.
  409. * condvar.c (pthread_condattr_init): Cast calloc return value.
  410. * cleanup.c: Reorganise conditional compilation.
  411. * attr.c (pthread_attr_init): Remove unused 'result'.
  412. Cast malloc return value.
  413. * private.c (ptw32_callUserDestroyRoutines): Redo conditional
  414. compilation.
  415. * misc.c (CancelableWait): C++ version uses 'throw'.
  416. * cancel.c (pthread_testcancel): Ditto.
  417. * implement.h (class ptw32_exception): Define for C++.
  418. * pthread.h: Fix C, C++, and Win32 SEH condition compilation
  419. mayhem around pthread_cleanup_* defines. C++ version now uses John
  420. Bossom's cleanup handlers.
  421. (pthread_attr_t): Make 'valid' unsigned.
  422. Define '_timeb' as 'timeb' for Ming32.
  423. Define PT_STDCALL as nothing for Mingw32. May be temporary.
  424. * cancel.c (pthread_testcancel): Cast return value.
  425. Wed Jan 20 09:31:28 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  426. * pthread.h (pthread_mutexattr_t): Changed to a pointer.
  427. * mutex.c (pthread_mutex_init): Conditionally create Win32 mutex
  428. - from John Bossom's implementation.
  429. (pthread_mutex_destroy): Conditionally close Win32 mutex
  430. - from John Bossom's implementation.
  431. (pthread_mutexattr_init): Replaced by John Bossom's version.
  432. (pthread_mutexattr_destroy): Ditto.
  433. (pthread_mutexattr_getpshared): New function from John Bossom's
  434. implementation.
  435. (pthread_mutexattr_setpshared): New function from John Bossom's
  436. implementation.
  437. Tue Jan 19 18:27:42 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  438. * pthread.h (pthreadCancelableTimedWait): New prototype.
  439. (pthreadCancelableWait): Remove second argument.
  440. * misc.c (CancelableWait): New static function is 
  441. pthreadCancelableWait() renamed.
  442. (pthreadCancelableWait): Now just calls CancelableWait() with
  443. INFINITE timeout.
  444. (pthreadCancelableTimedWait): Just calls CancelableWait()
  445. with passed in timeout.
  446. Tue Jan 19 18:27:42 1999  Scott Lightner <scott at curriculum.com>
  447. * private.c (ptw32_sem_timedwait): 'abstime' arg really is
  448. absolute time. Calculate relative time to wait from current
  449. time before passing timeout to new routine 
  450. pthreadCancelableTimedWait().
  451. Tue Jan 19 10:27:39 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  452. * pthread.h (pthread_mutexattr_setforcecs_np): New prototype.
  453. * mutex.c (pthread_mutexattr_init): Init 'pshared' and 'forcecs'
  454. attributes to 0.
  455. (pthread_mutexattr_setforcecs_np): New function (not portable).
  456. * pthread.h (pthread_mutex_t): 
  457. Add 'mutex' element. Set to NULL in PTHREAD_MUTEX_INITIALIZER.
  458. The pthread_mutex_*() routines will try to optimise performance
  459. by choosing either mutexes or critical sections as the basis
  460. for pthread mutexes for each indevidual mutex.
  461. (pthread_mutexattr_t_): Add 'forcecs' element.
  462. Some applications may choose to force use of critical sections
  463. if they know that:-
  464.      the mutex is PROCESS_PRIVATE and, 
  465.          either the OS supports TryEnterCriticalSection() or
  466.          pthread_mutex_trylock() will never be called on the mutex.
  467. This attribute will be setable via a non-portable routine.
  468. Note: We don't yet support PROCESS_SHARED mutexes, so the
  469. implementation as it stands will default to Win32 mutexes only if
  470. the OS doesn't support TryEnterCriticalSection. On Win9x, and early
  471. versions of NT 'forcecs' will need to be set in order to get
  472. critical section based mutexes.
  473. Sun Jan 17 12:01:26 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  474. * pthread.h (PTHREAD_MUTEX_INITIALIZER): Init new 'staticinit'
  475. value to '1' and existing 'valid' value to '1'.
  476. * global.c (ptw32_mutex_test_init_lock): Add.
  477. * implement.h (ptw32_mutex_test_init_lock.): Add extern.
  478. * private.c (ptw32_processInitialize): Init critical section for
  479. global lock used by _mutex_check_need_init().
  480. (ptw32_processTerminate): Ditto (:s/Init/Destroy/).
  481. * dll.c (dllMain): Move call to FreeLibrary() so that it is only
  482. called once when the process detaches.
  483. * mutex.c (_mutex_check_need_init): New static function to test
  484. and init PTHREAD_MUTEX_INITIALIZER mutexes. Provides serialised
  485. access to the internal state of the uninitialised static mutex. 
  486. Called from pthread_mutex_trylock() and pthread_mutex_lock() which
  487. do a quick unguarded test to check if _mutex_check_need_init()
  488. needs to be called. This is safe as the test is conservative
  489.   and is repeated inside the guarded section of 
  490. _mutex_check_need_init(). Thus in all calls except the first
  491. calls to lock static mutexes, the additional overhead to lock any
  492. mutex is a single memory fetch and test for zero.
  493. * pthread.h (pthread_mutex_t_): Add 'staticinit' member. Mutexes
  494. initialised by PTHREAD_MUTEX_INITIALIZER aren't really initialised
  495. until the first attempt to lock it. Using the 'valid'
  496. flag (which flags the mutex as destroyed or not) to record this
  497. information would be messy. It is possible for a statically
  498. initialised mutex such as this to be destroyed before ever being
  499. used.
  500. * mutex.c (pthread_mutex_trylock): Call _mutex_check_need_init()
  501. to test/init PTHREAD_MUTEX_INITIALIZER mutexes.
  502. (pthread_mutex_lock): Ditto.
  503. (pthread_mutex_unlock): Add check to ensure we don't try to unlock
  504. an unitialised static mutex.
  505. (pthread_mutex_destroy): Add check to ensure we don't try to delete
  506. a critical section that we never created. Allows us to destroy
  507. a static mutex that has never been locked (and hence initialised).
  508. (pthread_mutex_init): Set 'staticinit' flag to 0 for the new mutex.
  509. Sun Jan 17 12:01:26 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  510. * private.c (ptw32_sem_timedwait): Move from semaphore.c.
  511. * semaphore.c : Remove redundant #includes.
  512. (ptw32_sem_timedwait): Move to private.c.
  513. (sem_wait): Add missing abstime arg to pthreadCancelableWait() call.
  514. Fri Jan 15 23:38:05 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  515. * condvar.c (cond_timedwait): Remove comment.
  516. Fri Jan 15 15:41:28 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  517. * pthread.h: Add new 'abstime' arg to pthreadCancelableWait()
  518. prototype.
  519. * condvar.c (cond_timedwait): New generalised function called by
  520. both pthread_cond_wait() and pthread_cond_timedwait(). This is
  521. essentially pthread_cond_wait() renamed and modified to add the
  522. 'abstime' arg and call the new ptw32_sem_timedwait() instead of
  523. sem_wait().
  524. (pthread_cond_wait): Now just calls the internal static
  525. function cond_timedwait() with an INFINITE wait.
  526. (pthread_cond_timedwait): Now implemented. Calls the internal
  527. static function cond_timedwait().
  528. * implement.h (ptw32_sem_timedwait): New internal function
  529. prototype.
  530. * misc.c (pthreadCancelableWait): Added new 'abstime' argument
  531. to allow shorter than INFINITE wait.
  532. * semaphore.c (ptw32_sem_timedwait): New function for internal
  533. use.  This is essentially sem_wait() modified to add the
  534.         'abstime' arg and call the modified (see above)
  535.         pthreadCancelableWait().
  536. Thu Jan 14 14:27:13 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  537. * cleanup.c: Correct _cplusplus to __cplusplus wherever used.
  538. * Makefile.in: Add CC=g++ and add -fhandle-exceptions to CFLAGS.
  539. The derived Makefile will compile all units of the package as C++
  540. so that those which include try/catch exception handling should work
  541. properly. The package should compile ok if CC=gcc, however, exception
  542. handling will not be included and thus thread cancellation, for
  543.   example, will not work.
  544. * cleanup.c (ptw32_pop_cleanup): Add #warning to compile this
  545.   file as C++ if using a cygwin32 environment. Perhaps the whole package
  546. should be compiled using g++ under cygwin.
  547. * private.c (ptw32_threadStart): Change #error directive
  548. into #warning and bracket for __CYGWIN__ and derivative compilers.
  549. Wed Jan 13 09:34:52 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  550. * build.bat: Delete old binaries before compiling/linking.
  551. Tue Jan 12 09:58:38 1999  Tor Lillqvist <tml at iki.fi>
  552. * dll.c: The Microsoft compiler pragmas probably are more
  553. appropriately protected by _MSC_VER than by _WIN32.
  554. * pthread.h: Define ETIMEDOUT. This should be returned by
  555. pthread_cond_timedwait which is not implemented yet as of
  556. snapshot-1999-01-04-1305. It was implemented in the older version.
  557. The Microsoft compiler pragmas probably are more appropriately
  558. protected by _MSC_VER than by _WIN32.
  559. * pthread.def: pthread_mutex_destroy was missing from the def file
  560. * condvar.c (pthread_cond_broadcast): Ensure we only wait on threads
  561. if there were any waiting on the condition.
  562. I think pthread_cond_broadcast should do the WaitForSingleObject
  563. only if cv->waiters > 0? Otherwise it seems to hang, at least in the
  564. testg thread program from glib.
  565. Tue Jan 12 09:58:38 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  566. * condvar.c (pthread_cond_timedwait): Fix function description
  567. comments.
  568. * semaphore.c (sem_post): Correct typo in comment.
  569. Mon Jan 11 20:33:19 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  570. * pthread.h: Re-arrange conditional compile of pthread_cleanup-*
  571. macros.
  572. * cleanup.c (ptw32_push_cleanup): Provide conditional 
  573. compile of cleanup->prev.
  574. 1999-01-11  Tor Lillqvist <tml at iki.fi>
  575. * condvar.c (pthread_cond_init): Invert logic when testing the
  576. return value from calloc().
  577. Sat Jan  9 14:32:08 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  578. * implement.h: Compile-time switch for CYGWIN derived environments
  579. to use CreateThread instead of _beginthreadex. Ditto for ExitThread.
  580. Patch provided by Anders Norlander  <anorland at hem2.passagen.se>.
  581. Tue Jan  5 16:33:04 1999  Ross Johnson  <rpj at swan.canberra.edu.au>
  582. * cleanup.c (ptw32_pop_cleanup): Add C++ version of __try/__except
  583. block. Move trailing "}" out of #ifdef _WIN32 block left there by
  584. (rpj's) mistake.
  585. * private.c: Remove #include <errno.h> which is included by pthread.h.
  586. 1998-12-11  Ben Elliston  <bje at toilet.to.cygnus.com>
  587. * README: Update info about subscribing to the mailing list.
  588. Mon Jan  4 11:23:40 1999  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  589. * all: No code changes, just cleanup.
  590. - remove #if 0 /* Pre Bossom */ enclosed code.
  591. - Remove some redundant #includes.
  592. * pthread.h: Update implemented/unimplemented routines list.
  593. * Tag the bossom merge branch getting ready to merge back to main
  594. trunk.
  595. Tue Dec 29 13:11:16 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  596. * implement.h: Move the following struct definitions to pthread.h:
  597. pthread_t_, pthread_attr_t_, pthread_mutex_t_, pthread_mutex_t_,
  598. pthread_mutexattr_t_, pthread_key_t_, pthread_cond_t_,
  599. pthread_condattr_t_, pthread_once_t_.
  600. * pthread.h: Add "_" prefix to pthread_push_cleanup and 
  601. pthread_pop_cleanup internal routines, and associated struct and
  602. typedefs.
  603. * buildlib.bat: Add compile command for semaphore.c
  604. * pthread.def: Comment out pthread_atfork routine name. 
  605. Now unimplemented.
  606. * tsd.c (pthread_setspecific): Rename tkAssocCreate to
  607. ptw32_tkAssocCreate.
  608. (pthread_key_delete): Rename tkAssocDestroy to
  609. ptw32_tkAssocDestroy.
  610. * sync.c (pthread_join): Rename threadDestroy to ptw32_threadDestroy
  611. * sched.c (is_attr): attr is now **attr (was *attr), so add extra
  612. NULL pointer test.
  613. (pthread_attr_setschedparam): Increase redirection for attr which is
  614. now a **.
  615. (pthread_attr_getschedparam): Ditto.
  616. (pthread_setschedparam): Change thread validation and rename "thread"
  617.   Win32 thread Handle element name to match John Bossom's version.
  618. (pthread_getschedparam): Ditto.
  619. * private.c (ptw32_threadDestroy): Rename call to
  620. callUserDestroyRoutines() as ptw32_callUserDestroyRoutines()
  621. * misc.c: Add #include "implement.h".
  622. * dll.c: Remove defined(KLUDGE) wrapped code.
  623. * fork.c: Remove redefinition of ENOMEM.
  624. Remove pthread_atfork() and fork() with #if 0/#endif.
  625. * create.c (pthread_create): Rename threadStart and threadDestroy calls
  626. to ptw32_threadStart and ptw32_threadDestroy.
  627. * implement.h: Rename "detachedstate" to "detachstate".
  628. * attr.c: Rename "detachedstate" to "detachstate".
  629. Mon Dec 28 09:54:39 1998  John Bossom
  630. * semaphore.c: Initial version.
  631. * semaphore.h: Initial version.
  632. Mon Dec 28 09:54:39 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  633. * pthread.h (pthread_attr_t_): Change to *pthread_attr_t.
  634. Mon Dec 28 09:54:39 1998  John Bossom, Ben Elliston
  635. * attr.c (pthread_attr_setstacksize): Merge with John's version.
  636. (pthread_attr_getstacksize): Merge with John's version.
  637. (pthread_attr_setstackaddr): Merge with John's version.
  638. (pthread_attr_getstackaddr): Merge with John's version.
  639. (pthread_attr_init): Merge with John's version.
  640. (pthread_attr_destroy): Merge with John's version.
  641. (pthread_attr_getdetachstate): Merge with John's version.
  642. (pthread_attr_setdetachstate): Merge with John's version.
  643. (is_attr): attr is now **attr (was *attr), so add extra NULL pointer
  644. test.
  645. Mon Dec 28 09:54:39 1998  Ross Johnson
  646. * implement.h (pthread_attr_t_): Add and rename elements in JEB's
  647. version to correspond to original, so that it can be used with
  648. original attr routines.
  649. * pthread.h: Add #endif at end which was truncated in merging.
  650. Sun Dec 20 14:51:58 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  651. * misc.c (pthreadCancelableWait): New function by John Bossom. Non-standard
  652. but provides a hook that can be used to implement cancellation points in
  653. applications that use this library.
  654. * pthread.h (pthread_cleanup_pop): C++ (non-WIN32) version uses
  655. try/catch to emulate John Bossom's WIN32 __try/__finally behaviour.
  656. In the WIN32 version __finally block, add a test for AbnormalTermination otherwise
  657. cleanup is only run if the cleanup_pop execute arg is non-zero. Cancellation
  658. should cause the cleanup to run irrespective of the execute arg.
  659. * condvar.c (pthread_condattr_init): Replaced by John Bossom's version.
  660. (pthread_condattr_destroy): Replaced by John Bossom's version.
  661. (pthread_condattr_getpshared): Replaced by John Bossom's version.
  662. (pthread_condattr_setpshared): Replaced by John Bossom's version.
  663. (pthread_cond_init): Replaced by John Bossom's version.
  664. Fix comment (refered to mutex rather than condition variable).
  665. (pthread_cond_destroy): Replaced by John Bossom's version.
  666. (pthread_cond_wait): Replaced by John Bossom's version.
  667. (pthread_cond_timedwait): Replaced by John Bossom's version.
  668. (pthread_cond_signal): Replaced by John Bossom's version.
  669. (pthread_cond_broadcast): Replaced by John Bossom's version.
  670. Thu Dec 17 19:10:46 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  671. * tsd.c (pthread_key_create): Replaced by John Bossom's version.
  672. (pthread_key_delete): Replaced by John Bossom's version.
  673. (pthread_setspecific): Replaced by John Bossom's version.
  674. (pthread_getspecific): Replaced by John Bossom's version.
  675. Mon Dec  7 09:44:40 1998  John Bossom
  676. * cancel.c (pthread_setcancelstate): Replaced.
  677. (pthread_setcanceltype): Replaced.
  678. (pthread_testcancel): Replaced.
  679. (pthread_cancel): Replaced.
  680. * exit.c (pthread_exit): Replaced.
  681. * misc.c (pthread_self): Replaced.
  682. (pthread_equal): Replaced.
  683. * sync.c (pthread_detach): Replaced.
  684. (pthread_join): Replaced.
  685. * create.c (pthread_create): Replaced.
  686. * private.c (ptw32_processInitialize): New.
  687. (ptw32_processTerminate): New.
  688. (ptw32_threadStart): New.
  689.   (ptw32_threadDestroy): New.
  690. (ptw32_cleanupStack): New.
  691. (ptw32_tkAssocCreate): New.
  692. (ptw32_tkAssocDestroy): New.
  693. (ptw32_callUserDestroyRoutines): New.
  694. * implement.h: Added non-API structures and declarations.
  695. * dll.c (PthreadsEntryPoint): Cast return value of GetProcAddress
  696. to resolve compile warning from MSVC.
  697. * dll.c (DLLmain): Replaced.
  698. * dll.c (PthreadsEntryPoint):
  699. Re-applied Anders Norlander's patch:-
  700. Initialize ptw32_try_enter_critical_section at startup
  701. and release kernel32 handle when DLL is being unloaded.
  702. Sun Dec  6 21:54:35 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  703. * buildlib.bat: Fix args to CL when building the .DLL
  704. * cleanup.c (ptw32_destructor_run_all): Fix TSD key management.
  705. This is a tidy-up before TSD and Thread management is completely
  706. replaced by John Bossom's code.
  707. * tsd.c (pthread_key_create): Fix TSD key management.
  708. * global.c (ptw32_key_virgin_next): Initialise.
  709. * build.bat: New DOS script to compile and link a pthreads app
  710. using Microsoft's CL compiler linker.
  711. * buildlib.bat: New DOS script to compile all the object files
  712. and create pthread.lib and pthread.dll using Microsoft's CL
  713. compiler linker.
  714. 1998-12-05  Anders Norlander  <anorland at hem2.passagen.se>
  715. * implement.h (ptw32_try_enter_critical_section): New extern
  716. * dll.c (ptw32_try_enter_critical_section): New pointer to
  717. TryEnterCriticalSection if it exists; otherwise NULL.
  718. * dll.c (PthreadsEntryPoint):
  719. Initialize ptw32_try_enter_critical_section at startup
  720. and release kernel32 handle when DLL is being unloaded.
  721. * mutex.c (pthread_mutex_trylock): Replaced check for NT with
  722. a check if ptw32_try_enter_critical_section is valid
  723. pointer to a function. Call ptw32_try_enter_critical_section
  724. instead of TryEnterCriticalSection to avoid errors on Win95.
  725. Thu Dec 3 13:32:00 1998  Ross Johnson  <rpj at ise.canberra.edu.au>
  726. * README: Correct cygwin32 compatibility statement.
  727. Sun Nov 15 21:24:06 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  728. * cleanup.c (ptw32_destructor_run_all): Declare missing void * arg.
  729. Fixup CVS merge conflicts.
  730. 1998-10-30  Ben Elliston  <bje at cygnus.com>
  731. * condvar.c (cond_wait): Fix semantic error. Test for equality
  732. instead of making an assignment.
  733. Fri Oct 30 15:15:50 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  734. * cleanup.c (ptw32_handler_push): Fixed bug appending new
  735. handler to list reported by Peter Slacik
  736. <Peter.Slacik at leibinger.freinet.de>.
  737. (new_thread): Rename poorly named local variable to
  738. "new_handler".
  739. Sat Oct 24 18:34:59 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  740. * global.c: Add TSD key management array and index declarations.
  741. * implement.h: Ditto for externs.
  742. Fri Oct 23 00:08:09 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  743. * implement.h (PTW32_TSD_KEY_REUSE): Add enum.
  744. * private.c (ptw32_delete_thread): Add call to
  745. ptw32_destructor_run_all() to clean up the threads keys.
  746. * cleanup.c (ptw32_destructor_run_all): Check for no more dirty
  747. keys to run destructors on. Assume that the destructor call always
  748. succeeds and set the key value to NULL.
  749. Thu Oct 22 21:44:44 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  750. * tsd.c (pthread_setspecific): Add key management code.
  751. (pthread_key_create): Ditto.
  752. (pthread_key_delete): Ditto.
  753. * implement.h (struct ptw32_tsd_key): Add status member.
  754. * tsd.c: Add description of pthread_key_delete() from the
  755. standard as a comment.
  756. Fri Oct 16 17:38:47 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  757. * cleanup.c (ptw32_destructor_run_all): Fix and improve
  758. stepping through the key table.
  759. Thu Oct 15 14:05:01 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  760. * private.c (ptw32_new_thread): Remove init of destructorstack.
  761. No longer an element of pthread_t.
  762. * tsd.c (pthread_setspecific): Fix type declaration and cast.
  763. (pthread_getspecific): Ditto.
  764. (pthread_getspecific): Change error return value to NULL if key
  765. is not in use.
  766. Thu Oct 15 11:53:21 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  767. * global.c (ptw32_tsd_key_table): Fix declaration.
  768. * implement.h(ptw32_TSD_keys_TlsIndex): Add missing extern.
  769. (ptw32_tsd_mutex): Ditto.
  770. * create.c (ptw32_start_call): Fix "keys" array declaration.
  771. Add comment.
  772. * tsd.c (pthread_setspecific): Fix type declaration and cast.
  773. (pthread_getspecific): Ditto.
  774. * cleanup.c (ptw32_destructor_run_all): Declare missing loop
  775. counter.
  776. Wed Oct 14 21:09:24 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  777. * private.c (ptw32_new_thread): Increment ptw32_threads_count.
  778. (ptw32_delete_thread): Decrement ptw32_threads_count.
  779. Remove some comments.
  780. * exit.c (ptw32_exit): : Fix two pthread_mutex_lock() calls that
  781.   should have been pthread_mutex_unlock() calls.
  782. (ptw32_vacuum): Remove call to ptw32_destructor_pop_all().
  783. * create.c (pthread_create): Fix two pthread_mutex_lock() calls that
  784.   should have been pthread_mutex_unlock() calls.
  785. * global.c (ptw32_tsd_mutex): Add mutex for TSD operations.
  786. * tsd.c (pthread_key_create): Add critical section.
  787. (pthread_setspecific): Ditto.
  788. (pthread_getspecific): Ditto.
  789. (pthread_key_delete): Ditto.
  790. * sync.c (pthread_join): Fix two pthread_mutex_lock() calls that
  791.   should have been pthread_mutex_unlock() calls.
  792. Mon Oct 12 00:00:44 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  793. * implement.h (ptw32_tsd_key_table): New.
  794. * create.c (ptw32_start_call): Initialise per-thread TSD keys
  795. to NULL.
  796. * misc.c (pthread_once): Correct typo in comment.
  797. * implement.h (ptw32_destructor_push): Remove.
  798. (ptw32_destructor_pop): Remove.
  799. (ptw32_destructor_run_all): Rename from ptw32_destructor_pop_all.
  800. (PTW32_TSD_KEY_DELETED): Add enum.
  801. (PTW32_TSD_KEY_INUSE): Add enum.
  802. * cleanup.c (ptw32_destructor_push): Remove.
  803. (ptw32_destructor_pop): Remove.
  804. (ptw32_destructor_run_all): Totally revamped TSD.
  805. * dll.c (ptw32_TSD_keys_TlsIndex): Initialise.
  806. * tsd.c (pthread_setspecific): Totally revamped TSD.
  807. (pthread_getspecific): Ditto.
  808. (pthread_create): Ditto.
  809. (pthread_delete): Ditto.
  810. Sun Oct 11 22:44:55 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  811. * global.c (ptw32_tsd_key_table): Add new global.
  812. * implement.h (ptw32_tsd_key_t and struct ptw32_tsd_key):
  813. Add.
  814. (struct _pthread): Remove destructorstack.
  815. * cleanup.c (ptw32_destructor_run_all): Rename from
  816.   ptw32_destructor_pop_all. The key destructor stack was made
  817.   global rather than per-thread. No longer removes destructor nodes
  818. from the stack. Comments updated.
  819. 1998-10-06  Ben Elliston  <bje at cygnus.com>
  820. * condvar.c (cond_wait): Use POSIX, not Win32 mutex calls.
  821. (pthread_cond_broadcast): Likewise.
  822. (pthread_cond_signal): Likewise.
  823. 1998-10-05  Ben Elliston  <bje at cygnus.com>
  824. * pthread.def: Update. Some functions aren't available yet, others
  825. are macros in <pthread.h>.
  826. * tests/join.c: Remove; useless.
  827. Mon Oct  5 14:25:08 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  828. * pthread.def: New file for building the DLL.
  829. 1998-10-05  Ben Elliston  <bje at cygnus.com>
  830. * misc.c (pthread_equal): Correct inverted logic bug.
  831. (pthread_once): Use the POSIX mutex primitives, not Win32. Remove
  832. irrelevant FIXME comment.
  833. * global.c (PTHREAD_MUTEX_INITIALIZER): Move to pthread.h.
  834. * pthread.h (PTHREAD_MUTEX_INITIALIZER): Define.
  835. (pthread_mutex_t): Reimplement as a struct containing a valid
  836. flag. If the flag is ever down upon entry to a mutex operation,
  837. we call pthread_mutex_create() to initialise the object. This
  838. fixes the problem of how to handle statically initialised objects
  839. that can't call InitializeCriticalSection() due to their context.
  840. (PTHREAD_ONCE_INIT): Define.
  841. * mutex.c (pthread_mutex_init): Set valid flag.
  842. (pthread_mutex_destroy): Clear valid flag.
  843. (pthread_mutex_lock): Check and handle the valid flag.
  844. (pthread_mutex_unlock): Likewise.
  845. (pthread_mutex_trylock): Likewise.
  846. * tests/mutex3.c: New file; test for the static initialisation
  847. macro. Passes.
  848. * tests/create1.c: New file; test pthread_create(). Passes.
  849. * tests/equal.c: Poor test; remove.
  850. * tests/equal1.c New file; test pthread_equal(). Passes.
  851. * tests/once1.c: New file; test for pthread_once(). Passes.
  852. * tests/self.c: Remove; rename to self1.c.
  853. * tests/self1.c: This is the old self.c.
  854. * tests/self2.c: New file. Test pthread_self() with a single
  855. thread. Passes.
  856. * tests/self3.c: New file. Test pthread_self() with a couple of
  857. threads to ensure their thread IDs differ. Passes.
  858. 1998-10-04  Ben Elliston  <bje at cygnus.com>
  859. * tests/mutex2.c: Test pthread_mutex_trylock(). Passes.
  860. * tests/mutex1.c: New basic test for mutex functions (it passes).
  861. (main): Eliminate warning.
  862. * configure.in: Test for __stdcall, not _stdcall. Typo.
  863. * configure: Regenerate.
  864. * attr.c (pthread_attr_setstackaddr): Remove FIXME comment. Win32
  865. does know about ENOSYS after all.
  866. (pthread_attr_setstackaddr): Likewise.
  867. 1998-10-03  Ben Elliston  <bje at cygnus.com>
  868. * configure.in: Test for the `_stdcall' keyword.  Define `STDCALL'
  869. to `_stdcall' if we have it, null otherwise.
  870. * configure: Regenerate.
  871. * acconfig.h (STDCALL): New define.
  872. * config.h.in: Regenerate.
  873. * create.c (ptw32_start_call): Add STDCALL prefix.
  874. * mutex.c (pthread_mutex_init): Correct function signature.
  875. * attr.c (pthread_attr_init): Only zero out the `sigmask' member
  876. if we have the sigset_t type.
  877. * pthread.h: No need to include <unistd.h>.  It doesn't even exist
  878. on Win32! Again, an artifact of cross-compilation.
  879. (pthread_sigmask): Only provide if we have the sigset_t type.
  880. * process.h: Remove. This was a stand-in before we started doing
  881. native compilation under Win32.
  882. * pthread.h (pthread_mutex_init): Make `attr' argument const.
  883. 1998-10-02  Ben Elliston  <bje at cygnus.com>
  884. * COPYING: Remove.
  885. * COPYING.LIB: Add. This library is under the LGPL.
  886. 1998-09-13  Ben Elliston  <bje at cygnus.com>
  887. * configure.in: Test for required system features.
  888. * configure: Generate. 
  889. * acconfig.h: New file.
  890. * config.h.in: Generate.
  891. * Makefile.in: Renamed from Makefile.
  892. * COPYING: Import from a recent GNU package.
  893. * config.guess: Likewise.
  894. * config.sub: Likewise.
  895. * install-sh: Likewise.
  896. * config.h: Remove.  
  897. * Makefile: Likewise.
  898. 1998-09-12  Ben Elliston  <bje at cygnus.com>
  899. * windows.h: No longer needed; remove.
  900. * windows.c: Likewise.
  901. Sat Sep 12 20:09:24 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  902. * windows.h: Remove error number definitions. These are in <errno.h>
  903. * tsd.c: Add comment explaining rationale for not building
  904. POSIX TSD on top of Win32 TLS.
  905. 1998-09-12  Ben Elliston  <bje at cygnus.com>
  906. * {most}.c: Include <errno.h> to get POSIX error values.
  907. * signal.c (pthread_sigmask): Only provide if HAVE_SIGSET_T is
  908. defined.
  909.  
  910. * config.h: #undef features, don't #define them.  This will be
  911. generated by autoconf very soon.
  912. 1998-08-11  Ben Elliston  <bje at cygnus.com>
  913. * Makefile (LIB): Define.
  914. (clean): Define target.
  915. (all): Build a library not just the object files.
  916. * pthread.h: Provide a definition for struct timespec if we don't
  917. already have one.
  918. * windows.c (TlsGetValue): Bug fix.
  919. Thu Aug  6 15:19:22 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  920. * misc.c (pthread_once): Fix arg 1 of EnterCriticalSection()
  921.   and LeaveCriticalSection() calls to pass address-of lock.
  922. * fork.c (pthread_atfork): Typecast (void (*)(void *)) funcptr
  923. in each ptw32_handler_push() call.
  924. * exit.c (ptw32_exit): Fix attr arg in 
  925. pthread_attr_getdetachstate() call.
  926. * private.c (ptw32_new_thread): Typecast (HANDLE) NULL.
  927. (ptw32_delete_thread): Ditto.
  928. * implement.h: (PTW32_MAX_THREADS): Add define. This keeps
  929. changing in an attempt to make thread administration data types
  930. opaque and cleanup DLL startup.
  931. * dll.c (PthreadsEntryPoint): 
  932. (ptw32_virgins): Remove malloc() and free() calls.
  933. (ptw32_reuse): Ditto.
  934. (ptw32_win32handle_map): Ditto.
  935. (ptw32_threads_mutex_table): Ditto.
  936. * global.c (_POSIX_THREAD_THREADS_MAX): Initialise with 
  937. PTW32_MAX_THREADS.
  938. (ptw32_virgins): Ditto.
  939. (ptw32_reuse): Ditto.
  940. (ptw32_win32handle_map): Ditto.
  941. (ptw32_threads_mutex_table): Ditto.
  942. * create.c (pthread_create): Typecast (HANDLE) NULL.
  943. Typecast (unsigned (*)(void *)) start_routine.
  944. * condvar.c (pthread_cond_init): Add address-of operator & to
  945. arg 1 of pthread_mutex_init() call.
  946. (pthread_cond_destroy): Add address-of operator & to
  947. arg 1 of pthread_mutex_destroy() call. 
  948. * cleanup.c (ptw32_destructor_pop_all): Add (int) cast to 
  949. pthread_getspecific() arg.
  950. (ptw32_destructor_pop): Add (void *) cast to "if" conditional.
  951. (ptw32_destructor_push): Add (void *) cast to
  952. ptw32_handler_push() "key" arg.
  953. (malloc.h): Add include.
  954. * implement.h (ptw32_destructor_pop): Add prototype.
  955. * tsd.c (implement.h): Add include.
  956. * sync.c (pthread_join): Remove target_thread_mutex and it's
  957. initialisation. Rename getdetachedstate to getdetachstate.
  958. Remove unused variable "exitcode".
  959. (pthread_detach): Remove target_thread_mutex and it's
  960. initialisation. Rename getdetachedstate to getdetachstate.
  961. Rename setdetachedstate to setdetachstate.
  962. * signal.c (pthread_sigmask): Rename SIG_SET to SIG_SETMASK.
  963. Cast "set" to (long *) in assignment to passify compiler warning.
  964. Add address-of operator & to thread->attr.sigmask in memcpy() call
  965. and assignment.
  966. (pthread_sigmask): Add address-of operator & to thread->attr.sigmask
  967. in memcpy() call and assignment.
  968. * windows.h (THREAD_PRIORITY_ERROR_RETURN): Add.
  969. (THREAD_PRIORITY_LOWEST): Add.
  970. (THREAD_PRIORITY_HIGHEST): Add.
  971. * sched.c (is_attr): Add function.
  972. (implement.h): Add include.
  973. (pthread_setschedparam): Rename all instances of "sched_policy"
  974. to "sched_priority".
  975. (pthread_getschedparam): Ditto.
  976. Tue Aug  4 16:57:58 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  977. * private.c (ptw32_delete_thread): Fix typo. Add missing ';'.
  978. * global.c (ptw32_virgins): Change types from pointer to 
  979. array pointer.
  980. (ptw32_reuse): Ditto.
  981. (ptw32_win32handle_map): Ditto.
  982. (ptw32_threads_mutex_table): Ditto.
  983. * implement.h(ptw32_virgins): Change types from pointer to 
  984. array pointer.
  985. (ptw32_reuse): Ditto.
  986. (ptw32_win32handle_map): Ditto.
  987. (ptw32_threads_mutex_table): Ditto.
  988. * private.c (ptw32_delete_thread): Fix "entry" should be "thread".
  989. * misc.c (pthread_self): Add extern for ptw32_threadID_TlsIndex.
  990. * global.c: Add comment.
  991. * misc.c (pthread_once): Fix member -> dereferences.
  992. Change ptw32_once_flag to once_control->flag in "if" test.
  993. Tue Aug  4 00:09:30 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  994. * implement.h(ptw32_virgins): Add extern.
  995. (ptw32_virgin_next): Ditto.
  996. (ptw32_reuse): Ditto.
  997. (ptw32_reuse_top): Ditto.
  998. (ptw32_win32handle_map): Ditto.
  999. (ptw32_threads_mutex_table): Ditto.
  1000. * global.c (ptw32_virgins): Changed from array to pointer.
  1001. Storage allocation for the array moved into dll.c.
  1002. (ptw32_reuse): Ditto.
  1003. (ptw32_win32handle_map): Ditto.
  1004. (ptw32_threads_mutex_table): Ditto.
  1005. * dll.c (PthreadsEntryPoint): Set up thread admin storage when
  1006. DLL is loaded.
  1007. * fork.c (pthread_atfork): Fix function pointer arg to all
  1008. ptw32_handler_push() calls. Change "arg" arg to NULL in child push.
  1009. * exit.c: Add windows.h and process.h includes.
  1010. (ptw32_exit): Add local detachstate declaration.
  1011. (ptw32_exit): Fix incorrect name for pthread_attr_getdetachstate().
  1012. * pthread.h (_POSIX_THREAD_ATTR_STACKSIZE): Move from global.c
  1013. (_POSIX_THREAD_ATTR_STACKADDR): Ditto.
  1014. * create.c (pthread_create): Fix #if should be #ifdef.
  1015. (ptw32_start_call): Remove usused variables.
  1016. * process.h: Create.
  1017. * windows.h: Move _beginthreadex and _endthreadex into
  1018. process.h
  1019. Mon Aug  3 21:19:57 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1020. * condvar.c (pthread_cond_init): Add NULL attr to
  1021. pthread_mutex_init() call - default attributes will be used.
  1022. (cond_wait): Fix typo.
  1023. (cond_wait): Fix typo - cv was ev.
  1024. (pthread_cond_broadcast): Fix two identical typos.
  1025. * cleanup.c (ptw32_destructor_pop_all): Remove _ prefix from
  1026. PTHREAD_DESTRUCTOR_ITERATIONS.
  1027. * pthread.h: Move _POSIX_* values into posix.h
  1028. * pthread.h: Fix typo in pthread_mutex_init() prototype.
  1029. * attr.c (pthread_attr_init): Fix error in priority member init.
  1030. * windows.h (THREAD_PRIORITY_NORMAL): Add.
  1031. * pthread.h (sched_param): Add missing ';' to struct definition. 
  1032. * attr.c (pthread_attr_init): Remove obsolete pthread_attr_t
  1033. member initialisation - cancelstate, canceltype, cancel_pending.
  1034. (is_attr): Make arg "attr" a const.
  1035. * implement.h (PTW32_HANDLER_POP_LIFO): Remove definition.
  1036. (PTW32_HANDLER_POP_FIFO): Ditto.
  1037. (PTW32_VALID): Add missing newline escape ().
  1038. (ptw32_handler_node): Make element "next" a pointer.
  1039. 1998-08-02  Ben Elliston  <bje at cygnus.com>
  1040. * windows.h: Remove duplicate TlsSetValue() prototype.  Add 
  1041. TlsGetValue() prototype.
  1042. (FALSE): Define.
  1043. (TRUE): Likewise.
  1044. Add forgotten errno values.  Guard against multiple #includes.
  1045. * windows.c: New file.  Implement stubs for Win32 functions.
  1046. * Makefile (SRCS): Remove.  Not explicitly needed.
  1047. (CFLAGS): Add -Wall for all warnings with GCC.
  1048. Sun Aug  2 19:03:42 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1049. * config.h: Create. This is a temporary stand-in for autoconf yet
  1050. to be done.
  1051.   (HAVE_SIGNAL_H): Add.
  1052. * pthread.h: Minor rearrangement for temporary config.h.
  1053. Fri Jul 31 14:00:29 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  1054. * cleanup.c (ptw32_destructor_pop): Implement. Removes
  1055. destructors associated with a key without executing them.
  1056. (ptw32_destructor_pop_all): Add FIXME comment.
  1057. * tsd.c (pthread_key_delete): Add call to ptw32_destructor_pop().
  1058. Fri Jul 31 00:05:45 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1059. * tsd.c (pthread_key_create): Update to properly associate
  1060. the destructor routine with the key.
  1061. (pthread_key_delete): Add FIXME comment.
  1062. * exit.c (ptw32_vacuum): Add call to
  1063. ptw32_destructor_pop_all().
  1064. * implement.h (ptw32_handler_pop_all): Add prototype.
  1065. (ptw32_destructor_pop_all): Ditto.
  1066. * cleanup.c (ptw32_destructor_push): Implement. This is just a
  1067. call to ptw32_handler_push().
  1068. (ptw32_destructor_pop_all): Implement. This is significantly
  1069. different to ptw32_handler_pop_all().
  1070. * Makefile (SRCS): Create. Preliminary.
  1071. * windows.h: Create. Contains Win32 definitions for compile
  1072. testing. This is just a standin for the real one.
  1073. * pthread.h (SIG_UNBLOCK): Fix typo. Was SIG_BLOCK.
  1074. (windows.h): Add include. Required for CRITICAL_SECTION.
  1075. (pthread_cond_t): Move enum declaration outside of struct
  1076. definition.
  1077. (unistd.h): Add include - may be temporary.
  1078. * condvar.c (windows.h): Add include.
  1079. * implement.h (PTW32_THIS): Remove - no longer required.
  1080. (PTW32_STACK): Use pthread_self() instead of PTW32_THIS.
  1081. Thu Jul 30 23:12:45 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1082. * implement.h: Remove ptw32_find_entry() prototype.
  1083. * private.c: Extend comments.
  1084. Remove ptw32_find_entry() - no longer needed.
  1085. * create.c (ptw32_start_call): Add call to TlsSetValue() to
  1086. store the thread ID.
  1087. * dll.c (PthreadsEntryPoint): Implement. This is called
  1088. whenever a process loads the DLL. Used to initialise thread
  1089. local storage.
  1090. * implement.h: Add ptw32_threadID_TlsIndex.
  1091. Add ()s around PTW32_VALID expression.
  1092. * misc.c (pthread_self): Re-implement using Win32 TLS to store
  1093. the threads own ID.
  1094. Wed Jul 29 11:39:03 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1095. * private.c: Corrections in comments.
  1096. (ptw32_new_thread): Alter "if" flow to be more natural.
  1097. * cleanup.c (ptw32_handler_push): Same as below.
  1098. * create.c (pthread_create): Same as below.
  1099. * private.c (ptw32_new_thread): Rename "new" to "new_thread".
  1100. Since when has a C programmer been required to know C++?
  1101. Tue Jul 28 14:04:29 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  1102. * implement.h: Add PTW32_VALID macro.
  1103. * sync.c (pthread_join): Modify to use the new thread
  1104. type and ptw32_delete_thread(). Rename "target" to "thread".
  1105. Remove extra local variable "target".
  1106. (pthread_detach): Ditto.
  1107. * signal.c (pthread_sigmask): Move init of "us" out of inner block.
  1108. Fix instance of "this" should have been "us". Rename "us" to "thread".
  1109. * sched.c (pthread_setschedparam): Modify to use the new thread
  1110. type.
  1111. (pthread_getschedparam): Ditto.
  1112. * private.c (ptw32_find_thread): Fix return type and arg.
  1113. * implement.h: Remove PTW32_YES and PTW32_NO.
  1114. (ptw32_new_thread): Add prototype.
  1115. (ptw32_find_thread): Ditto.
  1116. (ptw32_delete_thread): Ditto.
  1117. (ptw32_new_thread_entry): Remove prototype.
  1118. (ptw32_find_thread_entry): Ditto.
  1119. (ptw32_delete_thread_entry): Ditto.
  1120. (  PTW32_NEW, PTW32_INUSE, PTW32_EXITED, PTW32_REUSE):
  1121. Add.
  1122. * create.c (pthread_create): Minor rename "us" to "new" (I need
  1123. these cues but it doesn't stop me coming out with some major bugs
  1124. at times).
  1125. Load start_routine and arg into the thread so the wrapper can
  1126. call it.
  1127. * exit.c (pthread_exit): Fix pthread_this should be pthread_self.
  1128. * cancel.c (pthread_setcancelstate): Change
  1129.   ptw32_threads_thread_t * to pthread_t and init with
  1130.   pthread_this().
  1131. (pthread_setcanceltype): Ditto.
  1132. * exit.c (ptw32_exit): Add new pthread_t arg.
  1133. Rename ptw32_delete_thread_entry to ptw32_delete_thread.
  1134. Rename "us" to "thread".
  1135. (pthread_exit): Call ptw32_exit with added thread arg.
  1136. * create.c (ptw32_start_call): Insert missing ")".
  1137. Add "us" arg to ptw32_exit() call.
  1138. (pthread_create): Modify to use new thread allocation scheme.
  1139. * private.c: Added detailed explanation of the new thread
  1140. allocation scheme.
  1141. (ptw32_new_thread): Totally rewritten to use
  1142. new thread allocation scheme.
  1143. (ptw32_delete_thread): Ditto.
  1144. (ptw32_find_thread): Obsolete.
  1145. Mon Jul 27 17:46:37 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  1146. * create.c (pthread_create): Start of rewrite. Not completed yet.
  1147. * private.c (ptw32_new_thread_entry): Start of rewrite. Not
  1148. complete.
  1149. * implement.h (ptw32_threads_thread): Rename, remove thread
  1150. member, add win32handle and ptstatus members.
  1151. (ptw32_t): Add.
  1152. * pthread.h: pthread_t is no longer mapped directly to a Win32
  1153. HANDLE type. This is so we can let the Win32 thread terminate and
  1154. reuse the HANDLE while pthreads holds it's own thread ID until
  1155. the last waiting join exits.
  1156. Mon Jul 27 00:20:37 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1157. * private.c (ptw32_delete_thread_entry): Destroy the thread
  1158.   entry attribute object before deleting the thread entry itself.
  1159. * attr.c (pthread_attr_init): Initialise cancel_pending = FALSE.
  1160. (pthread_attr_setdetachstate): Rename "detached" to "detachedstate".
  1161. (pthread_attr_getdetachstate): Ditto.
  1162. * exit.c (ptw32_exit): Fix incorrect check for detachedstate.
  1163. * implement.h (ptw32_call_t): Remove env member. 
  1164. Sun Jul 26 13:06:12 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1165. * implement.h (ptw32_new_thread_entry): Fix prototype.
  1166. (ptw32_find_thread_entry): Ditto.
  1167. (ptw32_delete_thread_entry): Ditto.
  1168. (ptw32_exit): Add prototype.
  1169. * exit.c (ptw32_exit): New function. Called from pthread_exit()
  1170. and ptw32_start_call() to exit the thread. It allows an extra
  1171. argument which is the return code passed to _endthreadex().
  1172. (ptw32_exit): Move thread entry delete call from ptw32_vacuum()
  1173. into here. Add more explanation of thread entry deletion.
  1174. (ptw32_exit): Clarify comment.
  1175. * create.c (ptw32_start_call): Change pthread_exit() call to
  1176. ptw32_exit() call.
  1177. * exit.c (ptw32_vacuum): Add thread entry deletion code
  1178. moved from ptw32_start_call(). See next item.
  1179. (pthread_exit): Remove longjmp(). Add mutex lock around thread table
  1180. manipulation code. This routine now calls _enthreadex().
  1181. * create.c (ptw32_start_call): Remove setjmp() call and move
  1182. cleanup code out. Call pthread_exit(NULL) to terminate the thread.
  1183. 1998-07-26  Ben Elliston  <bje at cygnus.com>
  1184. * tsd.c (pthread_getspecific): Update comments.
  1185. * mutex.c (pthread_mutexattr_setpshared): Not supported; remove.
  1186. (pthread_mutexattr_getpshared): Likewise.
  1187. * pthread.h (pthread_mutexattr_setpshared): Remove prototype.
  1188. (pthread_mutexattr_getpshared): Likewise.
  1189. Sun Jul 26 00:09:59 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1190. * sync.c: Rename all instances of ptw32_count_mutex to
  1191. ptw32_table_mutex.
  1192. * implement.h: Rename ptw32_count_mutex to
  1193. ptw32_table_mutex.
  1194. * global.c: Rename ptw32_count_mutex to
  1195. ptw32_table_mutex.
  1196. * create.c (pthread_create): Add critical sections.
  1197. (ptw32_start_call): Rename ptw32_count_mutex to
  1198. ptw32_table_mutex.
  1199. * cancel.c (pthread_setcancelstate): Fix indirection bug and rename
  1200. "this" to "us".
  1201. * signal.c (pthread_sigmask): Rename "this" to "us" and fix some
  1202. minor syntax errors. Declare "us" and initialise it.
  1203. * sync.c (pthread_detach): Rename "this" to "target".
  1204. * pthread.h: Converting PTHREAD_* defines to alias the (const int)
  1205. values in global.c.
  1206. * global.c: Started converting PTHREAD_* defines to (const int) as
  1207.   a part of making the eventual pthreads DLL binary compatible
  1208.   through version changes.
  1209. * condvar.c (cond_wait): Add cancelation point. This applies the
  1210. point to both pthread_cond_wait() and pthread_cond_timedwait().
  1211. * exit.c (pthread_exit): Rename "this" to "us".
  1212. * implement.h: Add comment.
  1213. * sync.c (pthread_join): I've satisfied myself that pthread_detach()
  1214. does set the detached attribute in the thread entry attributes
  1215. to PTHREAD_CREATE_DETACHED. "if" conditions were changed to test
  1216. that attribute instead of a separate flag.
  1217. * create.c (pthread_create): Rename "this" to "us".
  1218. (pthread_create): cancelstate and canceltype are not attributes
  1219. so the copy to thread entry attribute storage was removed.
  1220. Only the thread itself can change it's cancelstate or canceltype,
  1221. ie. the thread must exist already.
  1222. * private.c (ptw32_delete_thread_entry): Mutex locks removed.
  1223. Mutexes must be applied at the caller level.
  1224. (ptw32_new_thread_entry): Ditto.
  1225. (ptw32_new_thread_entry): Init cancelstate, canceltype, and
  1226. cancel_pending to default values.
  1227. (ptw32_new_thread_entry): Rename "this" to "new".
  1228. (ptw32_find_thread_entry): Rename "this" to "entry".
  1229. (ptw32_delete_thread_entry): Rename "thread_entry" to "entry".
  1230. * create.c (ptw32_start_call): Mutexes changed to
  1231. ptw32_count_mutex. All access to the threads table entries is
  1232. under the one mutex. Otherwise chaos reigns.
  1233. Sat Jul 25 23:16:51 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1234. * implement.h (ptw32_threads_thread): Move cancelstate and
  1235.   canceltype members out of pthread_attr_t into here.
  1236. * fork.c (fork): Add comment.
  1237. 1998-07-25  Ben Elliston  <bje at cygnus.com>
  1238. * fork.c (fork): Autoconfiscate.
  1239. Sat Jul 25 00:00:13 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1240. * create.c (ptw32_start_call): Set thread priority.  Ensure our
  1241.   thread entry is removed from the thread table but only if
  1242.   pthread_detach() was called and there are no waiting joins.
  1243. (pthread_create): Set detach flag in thread entry if the 
  1244. thread is created PTHREAD_CREATE_DETACHED.
  1245. * pthread.h (pthread_attr_t): Rename member "detachedstate".
  1246. * attr.c (pthread_attr_init): Rename attr members.
  1247. * exit.c (pthread_exit): Fix indirection mistake.
  1248. * implement.h (PTW32_THREADS_TABLE_INDEX): Add.
  1249. * exit.c (ptw32_vacuum): Fix incorrect args to
  1250. ptw32_handler_pop_all() calls.
  1251. Make thread entry removal conditional.
  1252. * sync.c (pthread_join): Add multiple join and async detach handling.
  1253. * implement.h (PTW32_THREADS_TABLE_INDEX): Add.
  1254. * global.c (ptw32_threads_mutex_table): Add.
  1255. * implement.h (ptw32_once_flag): Remove.
  1256. (ptw32_once_lock): Ditto.
  1257. (ptw32_threads_mutex_table): Add.
  1258. * global.c (ptw32_once_flag): Remove.
  1259. (ptw32_once_lock): Ditto.
  1260. * sync.c (pthread_join): Fix tests involving new return value
  1261. from ptw32_find_thread_entry().
  1262. (pthread_detach): Ditto.
  1263. * private.c (ptw32_find_thread_entry): Failure return code
  1264. changed from -1 to NULL.
  1265. Fri Jul 24 23:09:33 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1266. * create.c (pthread_create): Change . to -> in sigmask memcpy() args.
  1267. * pthread.h: (pthread_cancel): Add function prototype.
  1268. (pthread_testcancel): Ditto.
  1269. 1998-07-24  Ben Elliston  <bje at cygnus.com>
  1270. * pthread.h (pthread_condattr_t): Rename dummy structure member.
  1271. (pthread_mutexattr_t): Likewise.
  1272. Fri Jul 24 21:13:55 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1273. * cancel.c (pthread_cancel): Implement.
  1274. (pthread_testcancel): Implement.
  1275. * exit.c (pthread_exit): Add comment explaining the longjmp().
  1276. * implement.h (ptw32_threads_thread_t): New member cancelthread.
  1277. (PTW32_YES): Define.
  1278. (PTW32_NO): Define.
  1279. (RND_SIZEOF): Remove.
  1280. * create.c (pthread_create): Rename cancelability to cancelstate.
  1281. * pthread.h (pthread_attr_t): Rename cancelability to cancelstate.
  1282. (PTHREAD_CANCELED): Define.
  1283. 1998-07-24  Ben Elliston  <bje at cygnus.com>
  1284. * pthread.h (SIG_BLOCK): Define if not already defined.
  1285. (SIG_UNBLOCK): Likewise.
  1286. (SIG_SETMASK): Likewise.
  1287. (pthread_attr_t): Add signal mask member.
  1288. (pthread_sigmask): Add function prototype.
  1289. * signal.c (pthread_sigmask): Implement.
  1290. * create.c: #include <string.h> to get a prototype for memcpy().
  1291. (pthread_create): New threads inherit their creator's signal
  1292. mask.  Copy the signal mask to the new thread structure if we know
  1293. about signals.
  1294. Fri Jul 24 16:33:17 1998  Ross Johnson  <rpj at swan.canberra.edu.au>
  1295. * fork.c (pthread_atfork): Add all the necessary push calls.
  1296. Local implementation semantics:
  1297. If we get an ENOMEM at any time then ALL handlers
  1298. (including those from previous pthread_atfork() calls) will be
  1299. popped off each of the three atfork stacks before we return.
  1300. (fork): Add all the necessary pop calls. Add the thread cancellation
  1301. and join calls to the child fork.
  1302. Add #includes.
  1303. * implement.h: (ptw32_handler_push): Fix return type and stack arg
  1304. type in prototype.
  1305. (ptw32_handler_pop): Fix stack arg type in prototype.
  1306. (ptw32_handler_pop_all): Fix stack arg type in prototype.
  1307. * cleanup.c (ptw32_handler_push): Change return type to int and
  1308. return ENOMEM if malloc() fails.
  1309. * sync.c (pthread_detach): Use equality test, not assignment.
  1310. * create.c (ptw32_start_call): Add call to Win32 CloseHandle()
  1311. if thread is detached.
  1312. 1998-07-24  Ben Elliston  <bje at cygnus.com>
  1313. * sync.c (pthread_detach): Close the Win32 thread handle to
  1314. emulate detached (or daemon) threads.
  1315. Fri Jul 24 03:00:25 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1316. * sync.c (pthread_join): Save valueptr arg in joinvalueptr for
  1317. pthread_exit() to use.
  1318. * private.c (ptw32_new_thread_entry): Initialise joinvalueptr to
  1319. NULL.
  1320. * create.c (ptw32_start_call): Rewrite to facilitate joins.
  1321. pthread_exit() will do a longjmp() back to here. Does appropriate
  1322. cleanup and exit/return from the thread.
  1323. (pthread_create): _beginthreadex() now passes a pointer to our
  1324. thread table entry instead of just the call member of that entry.
  1325. * implement.h (ptw32_threads_thread): New member 
  1326. void ** joinvalueptr.
  1327. (ptw32_call_t): New member jmpbuf env.
  1328. * exit.c (pthread_exit): Major rewrite to handle joins and handing
  1329. value pointer to joining thread. Uses longjmp() back to 
  1330. ptw32_start_call().
  1331. * create.c (pthread_create): Ensure values of new attribute members
  1332. are copied to the thread attribute object.
  1333. * attr.c (pthread_attr_destroy):  Fix merge conflicts.
  1334. (pthread_attr_getdetachstate):  Fix merge conflicts.
  1335. (pthread_attr_setdetachstate):  Fix merge conflicts.
  1336. * pthread.h:  Fix merge conflicts.
  1337. * sync.c (pthread_join): Fix merge conflicts.
  1338. Fri Jul 24 00:21:21 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1339. * sync.c (pthread_join): Add check for valid and joinable
  1340. thread.
  1341. (pthread_detach): Implement. After checking for a valid and joinable
  1342. thread, it's still a no-op.
  1343. * private.c (ptw32_find_thread_entry): Bug prevented returning
  1344. an error value in some cases.
  1345. * attr.c (pthread_attr_setdetachedstate): Implement.
  1346. (pthread_attr_getdetachedstate): Implement.
  1347. * implement.h: Move more hidden definitions into here from
  1348. pthread.h.
  1349. 1998-07-24  Ben Elliston  <bje at cygnus.com>
  1350. * pthread.h (PTHREAD_CREATE_JOINABLE): Define.
  1351. (PTHREAD_CREATE_DETACHED): Likewise.
  1352. (pthread_attr_t): Add new structure member `detached'.
  1353. (pthread_attr_getdetachstate): Add function prototype.
  1354. (pthread_attr_setdetachstate): Likewise.
  1355. * sync.c (pthread_join): Return if the target thread is detached.
  1356. * attr.c (pthread_attr_init): Initialise cancelability and
  1357. canceltype structure members.
  1358. (pthread_attr_getdetachstate): Implement.
  1359. (pthread_attr_setdetachstate): Likewise.
  1360. * implement.h (PTW32_CANCEL_DEFAULTS): Remove.  Bit fields
  1361. proved to be too cumbersome.  Set the defaults in attr.c using the
  1362. public PTHREAD_CANCEL_* constants.
  1363. * cancel.c: New file.
  1364. * pthread.h (sched_param): Define this type.
  1365. (pthread_attr_getschedparam): Add function prototype.
  1366. (pthread_attr_setschedparam): Likewise.
  1367. (pthread_setcancelstate): Likewise.
  1368. (pthread_setcanceltype): Likewise.
  1369. (sched_get_priority_min): Likewise.
  1370. (sched_get_priority_max): Likewise.
  1371. (pthread_mutexattr_setprotocol): Remove; not supported.
  1372. (pthread_mutexattr_getprotocol): Likewise.
  1373. (pthread_mutexattr_setprioceiling): Likewise.
  1374. (pthread_mutexattr_getprioceiling): Likewise.
  1375. (pthread_attr_t): Add canceltype member.  Update comments.
  1376. (SCHED_OTHER): Define this scheduling policy constant.
  1377. (SCHED_FIFO): Likewise.
  1378. (SCHED_RR): Likewise.
  1379. (SCHED_MIN): Define the lowest possible value for this constant.
  1380. (SCHED_MAX): Likewise, the maximum possible value.
  1381. (PTHREAD_CANCEL_ASYNCHRONOUS): Redefine.
  1382. (PTHREAD_CANCEL_DEFERRED): Likewise.
  1383. * sched.c: New file.
  1384. (pthread_setschedparam): Implement.
  1385. (pthread_getschedparam): Implement.
  1386. (sched_get_priority_max): Validate policy argument.
  1387. (sched_get_priority_min): Likewise.
  1388. * mutex.c (pthread_mutexattr_setprotocol): Remove; not supported.
  1389. (pthread_mutexattr_getprotocol): Likewise.
  1390. (pthread_mutexattr_setprioceiling): Likewise.
  1391. (pthread_mutexattr_getprioceiling): Likewise.
  1392. Fri Jul 24 00:21:21 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1393. * create.c (pthread_create): Arg to ptw32_new_thread_entry()
  1394. changed. See next entry. Move mutex locks out. Changes made yesterday
  1395. and today allow us to start the new thread running rather than
  1396. temporarily suspended.
  1397. * private.c (ptw32_new_thread_entry): ptw32_thread_table
  1398. was changed back to a table of thread structures rather than pointers.
  1399. As such we're trading storage for increaded speed. This routine
  1400. was modified to work with the new table. Mutex lock put in around
  1401. global data accesses.
  1402. (ptw32_find_thread_entry): Ditto
  1403. (ptw32_delete_thread_entry): Ditto
  1404. Thu Jul 23 23:25:30 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1405. * global.c: New. Global data objects declared here. These moved from
  1406. pthread.h.
  1407. * pthread.h: Move implementation hidden definitions into
  1408. implement.h.
  1409. * implement.h: Move implementation hidden definitions from
  1410. pthread.h. Add constants to index into the different handler stacks.
  1411. * cleanup.c (ptw32_handler_push): Simplify args. Restructure.
  1412. (ptw32_handler_pop): Simplify args. Restructure.
  1413. (ptw32_handler_pop_all): Simplify args. Restructure.
  1414. Wed Jul 22 00:16:22 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1415. * attr.c, implement.h, pthread.h, ChangeLog: Resolve CVS merge
  1416. conflicts.
  1417. * private.c (ptw32_find_thread_entry): Changes to return type
  1418. to support leaner ptw32_threads_table[] which now only stores
  1419. ptw32_thread_thread_t *.
  1420. (ptw32_new_thread_entry): Internal changes.
  1421. (ptw32_delete_thread_entry): Internal changes to avoid contention.
  1422.   Calling routines changed accordingly.
  1423. * pthread.h: Modified cleanup macros to use new generic push and pop.
  1424. Added destructor and atfork stacks to ptw32_threads_thread_t.
  1425. * cleanup.c (ptw32_handler_push, ptw32_handler_pop,
  1426. ptw32_handler_pop_all): Renamed cleanup push and pop routines
  1427. and made generic to handle destructors and atfork handlers as
  1428. well.
  1429. * create.c (ptw32_start_call): New function is a wrapper for
  1430. all new threads. It allows us to do some cleanup when the thread
  1431. returns, ie. that is otherwise only done if the thread is cancelled.
  1432. * exit.c (ptw32_vacuum): New function contains code from 
  1433. pthread_exit() that we need in the new ptw32_start_call()
  1434. as well.
  1435. * implement.h: Various additions and minor changes.
  1436. * pthread.h: Various additions and minor changes.
  1437. Change cleanup handler macros to use generic handler push and pop
  1438. functions.
  1439. * attr.c: Minor mods to all functions.
  1440. (is_attr): Implemented missing function.
  1441. * create.c (pthread_create): More clean up.
  1442. * private.c (ptw32_find_thread_entry): Implement.
  1443. (ptw32_delete_thread_entry): Implement.
  1444. (ptw32_new_thread_entry): Implement.
  1445. These functions manipulate the implementations internal thread
  1446. table and are part of general code cleanup and modularisation.
  1447. They replace ptw32_getthreadindex() which was removed.
  1448. * exit.c (pthread_exit): Changed to use the new code above.
  1449. * pthread.h: Add cancelability constants. Update comments.
  1450. 1998-07-22  Ben Elliston  <bje at cygnus.com>
  1451. * attr.c (pthread_setstacksize): Update test of attr argument.
  1452. (pthread_getstacksize): Likewise.
  1453. (pthread_setstackaddr): Likewise.
  1454. (pthread_getstackaddr): Likewise.
  1455. (pthread_attr_init): No need to allocate any storage.
  1456. (pthread_attr_destroy): No need to free any storage.
  1457. * mutex.c (is_attr): Not likely to be needed; remove.
  1458. (remove_attr): Likewise.
  1459. (insert_attr): Likewise.
  1460. * implement.h (ptw32_mutexattr_t): Moved to a public definition
  1461. in pthread.h.  There was little gain in hiding these details.
  1462. (ptw32_condattr_t): Likewise.
  1463. (ptw32_attr_t): Likewise.
  1464. * pthread.h (pthread_atfork): Add function prototype.
  1465. (pthread_attr_t): Moved here from implement.h.
  1466. * fork.c (pthread_atfork): Preliminary implementation.
  1467. (ptw32_fork): Likewise.
  1468. Wed Jul 22 00:16:22 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1469. * cleanup.c (ptw32_cleanup_push): Implement.
  1470. (ptw32_cleanup_pop): Implement.
  1471. (ptw32_do_cancellation): Implement.
  1472. These are private to the implementation. The real cleanup functions
  1473. are macros. See below.
  1474. * pthread.h (pthread_cleanup_push): Implement as a macro.
  1475. (pthread_cleanup_pop): Implement as a macro.
  1476. Because these are macros which start and end a block, the POSIX scoping
  1477. requirement is observed. See the comment in the file.
  1478. * exit.c (pthread_exit): Refine the code.
  1479. * create.c (pthread_create): Code cleanup.
  1480. * implement.h (RND_SIZEOF): Add RND_SIZEOF(T) to round sizeof(T)
  1481. up to multiple of DWORD.
  1482. Add function prototypes.
  1483. * private.c (ptw32_getthreadindex): "*thread" should have been 
  1484. "thread". Detect empty slot fail condition.
  1485. 1998-07-20  Ben Elliston  <bje at cygnus.com>
  1486. * misc.c (pthread_once): Implement.  Don't use a per-application
  1487. flag and mutex--make `pthread_once_t' contain these elements in
  1488. their structure.  The earlier version had incorrect semantics.
  1489. * pthread.h (ptw32_once_flag): Add new variable.  Remove.
  1490. (ptw32_once_lock): Add new mutex lock to ensure integrity of
  1491. access to ptw32_once_flag.  Remove.
  1492. (pthread_once): Add function prototype.
  1493. (pthread_once_t): Define this type.
  1494. Mon Jul 20 02:31:05 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1495. * private.c (ptw32_getthreadindex): Implement.
  1496. * pthread.h: Add application static data dependent on
  1497. _PTHREADS_BUILD_DLL define. This is needed to avoid allocating
  1498. non-sharable static data within the pthread DLL.
  1499. * implement.h: Add ptw32_cleanup_stack_t, ptw32_cleanup_node_t
  1500. and PTW32_HASH_INDEX.
  1501. * exit.c (pthread_exit): Begin work on cleanup and de-allocate
  1502. thread-private storage.
  1503. * create.c (pthread_create): Add thread to thread table.
  1504. Keep a thread-private copy of the attributes with default values
  1505. filled in when necessary. Same for the cleanup stack. Make 
  1506. pthread_create C run-time library friendly by using _beginthreadex()
  1507. instead of CreateThread(). Fix error returns.
  1508. Sun Jul 19 16:26:23 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1509. * implement.h: Rename pthreads_thread_count to ptw32_threads_count.
  1510. Create ptw32_threads_thread_t struct to keep thread specific data.
  1511. * create.c: Rename pthreads_thread_count to ptw32_threads_count.
  1512. (pthread_create): Handle errors from CreateThread().
  1513. 1998-07-19  Ben Elliston  <bje at cygnus.com>
  1514. * condvar.c (pthread_cond_wait): Generalise.  Moved from here ..
  1515. (cond_wait): To here.
  1516. (pthread_cond_timedwait): Implement; use generalised cond_wait().
  1517. * pthread.h (pthread_key_t): Define this type.
  1518. (pthread_key_create): Add function prototype.
  1519. (pthread_setspecific): Likewise.
  1520. (pthread_getspecific): Likwise.
  1521. (pthread_key_delete): Likewise.
  1522. * tsd.c (pthread_key_create): Implement.
  1523. (pthread_setspecific): Likewise.
  1524. (pthread_getspecific): Likewise.
  1525. (pthread_key_delete): Likewise.
  1526. * mutex.c (pthread_mutex_trylock): Return ENOSYS if this function
  1527. is called on a Win32 platform which is not Windows NT.
  1528. 1998-07-18  Ben Elliston  <bje at cygnus.com>
  1529. * condvar.c (pthread_condattr_init): Do not attempt to malloc any
  1530. storage; none is needed now that condattr_t is an empty struct.
  1531. (pthread_condattr_destory): Likewise; do not free storage.
  1532. (pthread_condattr_setpshared): No longer supported; return ENOSYS.
  1533. (pthread_condattr_getpshared): Likewise.
  1534. (pthread_cond_init): Implement with help from Douglas Schmidt.
  1535. Remember to initialise the cv's internal mutex.
  1536. (pthread_cond_wait): Likewise.
  1537. (pthread_cond_signal): Likewise.
  1538. (pthread_cond_broadcast): Likewise.
  1539. (pthread_cond_timedwait): Preliminary implementation, but I need
  1540. to see some API documentation for `WaitForMultipleObject'.
  1541. (pthread_destory): Implement.
  1542. * pthread.h (pthread_cond_init): Add function protoype.
  1543. (pthread_cond_broadcast): Likewise.
  1544. (pthread_cond_signal): Likewise.
  1545. (pthread_cond_timedwait): Likewise.
  1546. (pthread_cond_wait): Likewise.
  1547. (pthread_cond_destroy): Likewise.
  1548. (pthread_cond_t): Define this type.  Fix for u_int.  Do not assume
  1549. that the mutex contained withing the pthread_cond_t structure will
  1550. be a critical section.  Use our new POSIX type!
  1551. * implement.h (ptw32_condattr_t): Remove shared attribute.
  1552. 1998-07-17  Ben Elliston  <bje at cygnus.com>
  1553. * pthread.h (PTHREADS_PROCESS_PRIVATE): Remove.
  1554. (PTHREAD_PROCESS_SHARED): Likewise.  No support for mutexes shared
  1555. across processes for now.
  1556. (pthread_mutex_t): Use a Win32 CRITICAL_SECTION type for better
  1557. performance.
  1558. * implement.h (ptw32_mutexattr_t): Remove shared attribute.
  1559. * mutex.c (pthread_mutexattr_setpshared): This optional function
  1560. is no longer supported, since we want to implement POSIX mutex
  1561. variables using the much more efficient Win32 critical section
  1562. primitives.  Critical section objects in Win32 cannot be shared
  1563. between processes.
  1564. (pthread_mutexattr_getpshared): Likewise.
  1565. (pthread_mutexattr_init): No need to malloc any storage; the
  1566. attributes structure is now empty.
  1567. (pthread_mutexattr_destroy): This is now a nop.
  1568. (pthread_mutex_init): Use InitializeCriticalSection().
  1569. (pthread_mutex_destroy): Use DeleteCriticalSection().
  1570. (pthread_mutex_lock): Use EnterCriticalSection().
  1571. (pthread_mutex_trylock): Use TryEnterCriticalSection().  This is
  1572. not supported by Windows 9x, but trylock is a hack anyway, IMHO.
  1573. (pthread_mutex_unlock): Use LeaveCriticalSection().
  1574. 1998-07-14  Ben Elliston  <bje at cygnus.com>
  1575. * attr.c (pthread_attr_setstacksize): Implement.
  1576. (pthread_attr_getstacksize): Likewise.
  1577. (pthread_attr_setstackaddr): Likewise.
  1578. (pthread_attr_getstackaddr): Likewise.
  1579. (pthread_attr_init): Likewise.
  1580. (pthread_attr_destroy): Likewise.
  1581. * condvar.c (pthread_condattr_init): Add `_cond' to function name.
  1582. * mutex.c (pthread_mutex_lock): Add `_mutex' to function name.
  1583. (pthread_mutex_trylock): Likewise.
  1584. (pthread_mutex_unlock): Likewise.
  1585. * pthread.h (pthread_condattr_setpshared): Fix typo.
  1586. (pthread_attr_init): Add function prototype.
  1587. (pthread_attr_destroy): Likewise.
  1588. (pthread_attr_setstacksize): Likewise.
  1589. (pthread_attr_getstacksize): Likewise.
  1590. (pthread_attr_setstackaddr): Likewise.
  1591. (pthread_attr_getstackaddr): Likewise.
  1592. Mon Jul 13 01:09:55 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1593. * implement.h: Wrap in #ifndef _IMPLEMENT_H
  1594. * create.c (pthread_create): Map stacksize attr to Win32.
  1595. * mutex.c: Include implement.h
  1596. 1998-07-13  Ben Elliston  <bje at cygnus.com>
  1597. * condvar.c (pthread_condattr_init): Implement.
  1598. (pthread_condattr_destroy): Likewise.
  1599. (pthread_condattr_setpshared): Likewise.
  1600. (pthread_condattr_getpshared): Likewise.
  1601. * implement.h (PTHREAD_THREADS_MAX): Remove trailing semicolon.
  1602. (PTHREAD_STACK_MIN): Specify; needs confirming.
  1603. (ptw32_attr_t): Define this type.
  1604. (ptw32_condattr_t): Likewise.
  1605. * pthread.h (pthread_mutex_t): Define this type.
  1606. (pthread_condattr_t): Likewise.
  1607. (pthread_mutex_destroy): Add function prototype.
  1608. (pthread_lock): Likewise.
  1609. (pthread_trylock): Likewise.
  1610. (pthread_unlock): Likewise.
  1611. (pthread_condattr_init): Likewise.
  1612. (pthread_condattr_destroy): Likewise.
  1613. (pthread_condattr_setpshared): Likewise.
  1614. (pthread_condattr_getpshared): Likewise.
  1615. * mutex.c (pthread_mutex_init): Implement.
  1616. (pthread_mutex_destroy): Likewise.
  1617. (pthread_lock): Likewise.
  1618. (pthread_trylock): Likewise.
  1619. (pthread_unlock): Likewise.
  1620. 1998-07-12  Ben Elliston  <bje at cygnus.com>
  1621. * implement.h (ptw32_mutexattr_t): Define this implementation
  1622. internal type.  Application programmers only see a mutex attribute
  1623. object as a void pointer.
  1624. * pthread.h (pthread_mutexattr_t): Define this type.
  1625. (pthread_mutexattr_init): Add function prototype.
  1626. (pthread_mutexattr_destroy): Likewise.
  1627. (pthread_mutexattr_setpshared): Likewise.
  1628. (pthread_mutexattr_getpshared): Likewise.
  1629. (pthread_mutexattr_setprotocol): Likewise.
  1630. (pthread_mutexattr_getprotocol): Likewise.
  1631. (pthread_mutexattr_setprioceiling): Likewise.
  1632. (pthread_mutexattr_getprioceiling): Likewise.
  1633. (PTHREAD_PROCESS_PRIVATE): Define.
  1634. (PTHREAD_PROCESS_SHARED): Define.
  1635. * mutex.c (pthread_mutexattr_init): Implement.
  1636. (pthread_mutexattr_destroy): Implement.
  1637. (pthread_mutexattr_setprotocol): Implement.
  1638. (pthread_mutexattr_getprotocol): Likewise.
  1639. (pthread_mutexattr_setprioceiling): Likewise.
  1640. (pthread_mutexattr_getprioceiling): Likewise.
  1641. (pthread_mutexattr_setpshared): Likewise.
  1642. (pthread_mutexattr_getpshared): Likewise.
  1643. (insert_attr): New function; very preliminary implementation!
  1644. (is_attr): Likewise.
  1645. (remove_attr): Likewise.
  1646. Sat Jul 11 14:48:54 1998  Ross Johnson  <rpj at ixobrychus.canberra.edu.au>
  1647. * implement.h: Preliminary implementation specific defines.
  1648. * create.c (pthread_create): Preliminary implementation.
  1649. 1998-07-11  Ben Elliston  <bje at cygnus.com>
  1650. * sync.c (pthread_join): Implement.
  1651. * misc.c (pthread_equal): Likewise.
  1652. * pthread.h (pthread_join): Add function prototype.
  1653. (pthread_equal): Likewise.
  1654. 1998-07-10  Ben Elliston  <bje at cygnus.com>
  1655. * misc.c (pthread_self): Implement.
  1656. * exit.c (pthread_exit): Implement.
  1657. * pthread.h (pthread_exit): Add function prototype.
  1658. (pthread_self): Likewise.
  1659. (pthread_t): Define this type.
  1660. 1998-07-09  Ben Elliston  <bje at cygnus.com>
  1661. * create.c (pthread_create): A dummy stub right now.
  1662. * pthread.h (pthread_create): Add function prototype.