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

视频捕捉/采集

开发平台:

Visual C++

  1. RELEASE 2.8.0
  2. -------------
  3. (2006-12-22)
  4. General
  5. -------
  6. New bug fixes in this release since 2.7.0 have not been applied to the version 1.x.x series. It is probably time to drop version 1. Testing and verification
  7. ------------------------
  8. This release has not yet been tested on SMP architechtures. All tests pass on a uni-processor system. Bug fixes --------- Sem_destroy could return EBUSY even though no threads were waiting on the  semaphore. Other races around invalidating semaphore structs (internally) have been removed as well. New tests --------- semaphore5.c - tests the bug fix referred to above. RELEASE 2.7.0
  9. -------------
  10. (2005-06-04)
  11. General
  12. -------
  13. All new features in this release have been back-ported in release 1.11.0,
  14. including the incorporation of MCS locks in pthread_once, however, versions
  15. 1 and 2 remain incompatible even though they are now identical in
  16. performance and functionality.
  17. Testing and verification
  18. ------------------------
  19. This release has been tested (passed the test suite) on both uni-processor
  20. and multi-processor systems.
  21. - Tim Theisen
  22. Bug fixes
  23. ---------
  24. Pthread_once has been re-implemented to remove priority boosting and other
  25. complexity to improve robustness. Races for Win32 handles that are not
  26. recycle-unique have been removed. The general form of pthread_once is now
  27. the same as that suggested earlier by Alexander Terekhov, but instead of the
  28. 'named mutex', a queue-based lock has been implemented which has the required
  29. properties of dynamic self initialisation and destruction. This lock is also
  30. efficient. The ABI is unaffected in as much as the size of pthread_once_t has
  31. not changed and PTHREAD_ONCE_INIT has not changed, however, applications that
  32. peek inside pthread_once_t, which is supposed to be opaque, will break.
  33. - Vladimir Kliatchko
  34. New features
  35. ------------
  36. * Support for Mingw cross development tools added to GNUmakefile.
  37. Mingw cross tools allow building the libraries on Linux.
  38. - Mikael Magnusson
  39. RELEASE 2.6.0
  40. -------------
  41. (2005-05-19)
  42. General
  43. -------
  44. All of the bug fixes and new features in this release have been
  45. back-ported in release 1.10.0.
  46. Testing and verification
  47. ------------------------
  48. This release has been tested (passed the test suite) on both uni-processor
  49. and multi-processor systems. Thanks to Tim Theisen at TomoTherapy for
  50. exhaustively running the MP tests and for providing crutial observations
  51. and data when faults are detected.
  52. Bugs fixed
  53. ----------
  54. * pthread_detach() now reclaims remaining thread resources if called after
  55. the target thread has terminated. Previously, this routine did nothing in
  56. this case.
  57. New tests
  58. ---------
  59. * detach1.c - tests that pthread_detach properly invalidates the target
  60. thread, which indicates that the thread resources have been reclaimed.
  61. RELEASE 2.5.0
  62. -------------
  63. (2005-05-09)
  64. General
  65. -------
  66. The package now includes a reference documentation set consisting of
  67. HTML formatted Unix-style manual pages that have been edited for
  68. consistency with Pthreads-w32. The set can also be read online at:
  69. http://sources.redhat.com/pthreads-win32/manual/index.html
  70. Thanks again to Tim Theisen for running the test suite pre-release
  71. on an MP system.
  72. All of the bug fixes and new features in this release have been
  73. back-ported in release 1.9.0.
  74. Bugs fixed
  75. ----------
  76. * Thread Specific Data (TSD) key management has been ammended to
  77. eliminate a source of (what was effectively) resource leakage (a HANDLE
  78. plus memory for each key destruct routine/thread association). This was
  79. not a true leak because these resources were eventually reclaimed when
  80. pthread_key_delete was run AND each thread referencing the key had exited.
  81. The problem was that these two conditions are often not met until very
  82. late, and often not until the process is about to exit.
  83. The ammended implementation avoids the need for the problematic HANDLE
  84. and reclaims the memory as soon as either the key is deleted OR the
  85. thread exits, whichever is first.
  86. Thanks to Richard Hughes at Aculab for identifying and locating the leak.
  87. * TSD key destructors are now processed up to PTHREAD_DESTRUCTOR_ITERATIONS
  88. times instead of just once. PTHREAD_DESTRUCTOR_ITERATIONS has been
  89. defined in pthread.h for some time but not used.
  90. * Fix a semaphore accounting race between sem_post/sem_post_multiple
  91. and sem_wait cancellation. This is the same issue as with
  92. sem_timedwait that was fixed in the last release.
  93. * sem_init, sem_post, and sem_post_multiple now check that the
  94. semaphore count never exceeds _POSIX_SEM_VALUE_MAX.
  95. * Although sigwait() is nothing more than a no-op, it should at least
  96. be a cancellation point to be consistent with the standard.
  97. New tests
  98. ---------
  99. * stress1.c - attempts to expose problems in condition variable
  100. and semaphore timed wait logic. This test was inspired by Stephan
  101. Mueller's sample test code used to identify the sem_timedwait bug
  102. from the last release. It's not a part of the regular test suite
  103. because it can take awhile to run. To run it:
  104. nmake clean VC-stress
  105. * tsd2.c - tests that key destructors are re-run if the tsd key value is
  106. not NULL after the destructor routine has run. Also tests that
  107. pthread_setspecific() and pthread_getspecific() are callable from
  108. destructors.
  109. RELEASE 2.4.0
  110. -------------
  111. (2005-04-26)
  112. General
  113. -------
  114. There is now no plan to release a version 3.0.0 to fix problems in
  115. pthread_once(). Other possible implementations of pthread_once
  116. will still be investigated for a possible future release in an attempt
  117. to reduce the current implementation's complexity.
  118. All of the bug fixes and new features in this release have been
  119. back-ported for release 1.8.0.
  120. Bugs fixed
  121. ----------
  122. * Fixed pthread_once race (failures on an MP system). Thanks to
  123. Tim Theisen for running exhaustive pre-release testing on his MP system
  124. using a range of compilers:
  125.   VC++ 6
  126.   VC++ 7.1
  127.   Intel C++ version 8.0
  128. All tests passed.
  129. Some minor speed improvements were also done.
  130. * Fix integer overrun error in pthread_mutex_timedlock() - missed when
  131. sem_timedwait() was fixed in release 2.2.0. This routine no longer returns
  132. ENOTSUP when NEED_SEM is defined - it is supported (NEED_SEM is only
  133. required for WinCE versions prior to 3.0).
  134. * Fix timeout bug in sem_timedwait().
  135. - Thanks to Stephan Mueller for reporting, providing diagnostic output
  136. and test code.
  137. * Fix several problems in the NEED_SEM conditionally included code.
  138. NEED_SEM included code is provided for systems that don't implement W32
  139. semaphores, such as WinCE prior to version 3.0. An alternate implementation
  140. of POSIX semaphores is built using W32 events for these systems when
  141. NEED_SEM is defined. This code has been completely rewritten in this
  142. release to reuse most of the default POSIX semaphore code, and particularly,
  143. to implement all of the sem_* routines supported by pthreads-win32. Tim
  144. Theisen also run the test suite over the NEED_SEM code on his MP system. All
  145. tests passed.
  146. * The library now builds without errors for the Borland Builder 5.5 compiler.
  147. New features
  148. ------------
  149. * pthread_mutex_timedlock() and all sem_* routines provided by
  150. pthreads-win32 are now implemented for WinCE versions prior to 3.0. Those
  151. versions did not implement W32 semaphores. Define NEED_SEM in config.h when
  152. building the library for these systems.
  153. Known issues in this release
  154. ----------------------------
  155. * pthread_once is too complicated - but it works as far as testing can
  156. determine..
  157. * The Borland version of the dll fails some of the tests with a memory read
  158. exception. The cause is not yet known but a compiler bug has not been ruled
  159. out.
  160. RELEASE 2.3.0
  161. -------------
  162. (2005-04-12)
  163. General
  164. -------
  165. Release 1.7.0 is a backport of features and bug fixes new in
  166. this release. See earlier notes under Release 2.0.0/General.
  167. Bugs fixed
  168. ----------
  169. * Fixed pthread_once potential for post once_routine cancellation
  170. hanging due to starvation. See comments in pthread_once.c.
  171. Momentary priority boosting is used to ensure that, after a
  172. once_routine is cancelled, the thread that will run the
  173. once_routine is not starved by higher priority waiting threads at
  174. critical times. Priority boosting occurs only AFTER a once_routine 
  175. cancellation, and is applied only to that once_control. The
  176. once_routine is run at the thread's normal base priority.
  177. New tests
  178. ---------
  179. * once4.c: Aggressively tests pthread_once() under realtime
  180. conditions using threads with varying priorities. Windows'
  181. random priority boosting does not occur for threads with realtime
  182. priority levels.
  183. RELEASE 2.2.0
  184. -------------
  185. (2005-04-04)
  186. General
  187. -------
  188. * Added makefile targets to build static link versions of the library.
  189. Both MinGW and MSVC. Please note that this does not imply any change
  190. to the LGPL licensing, which still imposes psecific conditions on
  191. distributing software that has been statically linked with this library.
  192. * There is a known bug in pthread_once(). Cancellation of the init_routine
  193. exposes a potential starvation (i.e. deadlock) problem if a waiting thread
  194. has a higher priority than the initting thread. This problem will be fixed
  195. in version 3.0.0 of the library.
  196. Bugs fixed
  197. ----------
  198. * Fix integer overrun error in sem_timedwait().
  199. Kevin Lussier
  200. * Fix preprocessor directives for static linking.
  201. Dimitar Panayotov
  202. RELEASE 2.1.0
  203. -------------
  204. (2005-03-16)
  205. Bugs fixed
  206. ----------
  207. * Reverse change to pthread_setcancelstate() in 2.0.0.
  208. RELEASE 2.0.0
  209. -------------
  210. (2005-03-16)
  211. General
  212. -------
  213. This release represents an ABI change and the DLL version naming has
  214. incremented from 1 to 2, e.g. pthreadVC2.dll.
  215. Version 1.4.0 back-ports the new functionality included in this
  216. release. Please distribute DLLs built from that version with updates
  217. to applications built on pthreads-win32 version 1.x.x.
  218. The package naming has changed, replacing the snapshot date with 
  219. the version number + descriptive information. E.g. this
  220. release is "pthreads-w32-2-0-0-release".
  221. Bugs fixed
  222. ----------
  223. * pthread_setcancelstate() no longer checks for a pending
  224. async cancel event if the library is using alertable async
  225. cancel. See the README file (Prerequisites section) for info
  226. on adding alertable async cancelation.
  227. New features
  228. ------------
  229. * pthread_once() now supports init_routine cancellability.
  230. New tests
  231. ---------
  232. * Agressively test pthread_once() init_routine cancellability.
  233. SNAPSHOT 2005-03-08
  234. -------------------
  235. Version 1.3.0
  236. Bug reports (fixed)
  237. -------------------
  238. * Implicitly created threads leave Win32 handles behind after exiting.
  239. - Dmitrii Semii
  240. * pthread_once() starvation problem.
  241. - Gottlob Frege
  242. New tests
  243. ---------
  244. * More intense testing of pthread_once().
  245. SNAPSHOT 2005-01-25
  246. -------------------
  247. Version 1.2.0
  248. Bug fixes
  249. ---------
  250. * Attempted acquisition of a recursive mutex could cause waiting threads
  251. to not be woken when the mutex was released.
  252. - Ralf Kubis  <RKubis at mc.com>
  253. * Various package omissions have been fixed.
  254. SNAPSHOT 2005-01-03
  255. -------------------
  256. Version 1.1.0
  257. Bug fixes
  258. ---------
  259. * Unlocking recursive or errorcheck mutexes would sometimes
  260. unexpectedly return an EPERM error (bug introduced in
  261. snapshot-2004-11-03).
  262. - Konstantin Voronkov  <beowinkle at yahoo.com>
  263. SNAPSHOT 2004-11-22
  264. -------------------
  265. Version 1.0.0
  266. This snapshot primarily fixes the condvar bug introduced in
  267. snapshot-2004-11-03. DLL versioning has also been included to allow
  268. applications to runtime check the Microsoft compatible DLL version
  269. information, and to extend the DLL naming system for ABI and major
  270. (non-backward compatible) API changes. See the README file for details.
  271. Bug fixes
  272. ---------
  273. * Condition variables no longer deadlock (bug introduced in
  274. snapshot-2004-11-03).
  275. - Alexander Kotliarov and Nicolas at saintmac
  276. * DLL naming extended to avoid 'DLL hell' in the future, and to
  277. accommodate the ABI change introduced in snapshot-2004-11-03. Snapshot
  278. 2004-11-03 will be removed from FTP sites.
  279. New features
  280. ------------
  281. * A Microsoft-style version resource has been added to the DLL for
  282. applications that wish to check DLL compatibility at runtime.
  283. * Pthreads-win32 DLL naming has been extended to allow incompatible DLL
  284. versions to co-exist in the same filesystem. See the README file for details,
  285. but briefly: while the version information inside the DLL will change with
  286. each release from now on, the DLL version names will only change if the new
  287. DLL is not backward compatible with older applications.
  288. The versioning scheme has been borrowed from GNU Libtool, and the DLL
  289. naming scheme is from Cygwin. Provided the Libtool-style numbering rules are
  290. honoured, the Cygwin DLL naming scheme automatcally ensures that DLL name
  291. changes are minimal and that applications will not load an incompatible
  292. pthreads-win32 DLL.
  293. Those who use the pre-built DLLs will find that the DLL/LIB names have a new
  294. suffix (1) in this snapshot. E.g. pthreadVC1.dll etc.
  295. * The POSIX thread ID reuse uniqueness feature introduced in the last snapshot
  296. has been kept as default, but the behaviour can now be controlled when the DLL
  297. is built to effectively switch it off. This makes the library much more
  298. sensitive to applications that assume that POSIX thread IDs are unique, i.e.
  299. are not strictly compliant with POSIX. See the PTW32_THREAD_ID_REUSE_INCREMENT
  300. macro comments in config.h for details.
  301. Other changes
  302. -------------
  303. Certain POSIX macros have changed.
  304. These changes are intended to conform to the Single Unix Specification version 3,
  305. which states that, if set to 0 (zero) or not defined, then applications may use
  306. sysconf() to determine their values at runtime. Pthreads-win32 does not
  307. implement sysconf().
  308. The following macros are no longer undefined, but defined and set to -1
  309. (not implemented):
  310.       _POSIX_THREAD_ATTR_STACKADDR
  311.       _POSIX_THREAD_PRIO_INHERIT
  312.       _POSIX_THREAD_PRIO_PROTECT
  313.       _POSIX_THREAD_PROCESS_SHARED
  314. The following macros are defined and set to 200112L (implemented):
  315.       _POSIX_THREADS
  316.       _POSIX_THREAD_SAFE_FUNCTIONS
  317.       _POSIX_THREAD_ATTR_STACKSIZE
  318.       _POSIX_THREAD_PRIORITY_SCHEDULING
  319.       _POSIX_SEMAPHORES
  320.       _POSIX_READER_WRITER_LOCKS
  321.       _POSIX_SPIN_LOCKS
  322.       _POSIX_BARRIERS
  323. The following macros are defined and set to appropriate values:
  324.       _POSIX_THREAD_THREADS_MAX
  325.       _POSIX_SEM_VALUE_MAX
  326.       _POSIX_SEM_NSEMS_MAX
  327.       PTHREAD_DESTRUCTOR_ITERATIONS
  328.       PTHREAD_KEYS_MAX
  329.       PTHREAD_STACK_MIN
  330.       PTHREAD_THREADS_MAX
  331. SNAPSHOT 2004-11-03
  332. -------------------
  333. DLLs produced from this snapshot cannot be used with older applications without
  334. recompiling the application, due to a change to pthread_t to provide unique POSIX
  335. thread IDs.
  336. Although this snapshot passes the extended test suite, many of the changes are
  337. fairly major, and some applications may show different behaviour than previously,
  338. so adopt with care. Hopefully, any changed behaviour will be due to the library
  339. being better at it's job, not worse.
  340. Bug fixes
  341. ---------
  342. * pthread_create() no longer accepts NULL as the thread reference arg.
  343. A segfault (memory access fault) will result, and no thread will be
  344. created.
  345. * pthread_barrier_wait() no longer acts as a cancelation point.
  346. * Fix potential race condition in pthread_once()
  347. - Tristan Savatier  <tristan at mpegtv.com>
  348. * Changes to pthread_cond_destroy() exposed some coding weaknesses in several
  349. test suite mini-apps because pthread_cond_destroy() now returns EBUSY if the CV
  350. is still in use.
  351. New features
  352. ------------
  353. * Added for compatibility:
  354. PTHREAD_RECURSIVE_MUTEX_INITIALIZER,
  355. PTHREAD_ERRORCHECK_MUTEX_INITIALIZER,
  356. PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
  357. PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
  358. * Initial support for Digital Mars compiler
  359. - Anuj Goyal  <anuj.goyal at gmail.com>
  360. * Faster Mutexes. These have been been rewritten following a model provided by
  361. Alexander Terekhov that reduces kernel space checks, and eliminates some additional
  362. critical sections used to manage a race between timedlock expiration and unlock.
  363. Please be aware that the new mutexes do not enforce strict absolute FIFO scheduling
  364. of mutexes, however any out-of-order lock acquisition should be very rare.
  365. * Faster semaphores. Following a similar model to mutexes above, these have been
  366. rewritten to use preliminary users space checks.
  367. * sem_getvalue() now returns the number of waiters.
  368. * The POSIX thread ID now has much stronger uniqueness characteristics. The library
  369. garrantees not to reuse the same thread ID for at least 2^(wordsize) thread
  370. destruction/creation cycles.
  371. New tests
  372. ---------
  373. * semaphore4.c: Tests cancelation of the new sem_wait().
  374. * semaphore4t.c: Likewise for sem_timedwait().
  375. * rwlock8.c: Tests and times the slow execution paths of r/w locks, and the CVs,
  376. mutexes, and semaphores that they're built on.
  377. SNAPSHOT 2004-05-16
  378. -------------------
  379. Attempt to add Watcom to the list of compilers that can build the library.
  380. This failed in the end due to it's non-thread-aware errno. The library
  381. builds but the test suite fails. See README.Watcom for more details.
  382. Bug fixes
  383. ---------
  384. * Bug and memory leak in sem_init()
  385. - Alex Blanco  <Alex.Blanco at motorola.com>
  386. * ptw32_getprocessors() now returns CPU count of 1 for WinCE.
  387. - James Ewing  <james.ewing at sveasoft.com>
  388. * pthread_cond_wait() could be canceled at a point where it should not
  389. be cancelable. Fixed.
  390. - Alexander Terekhov  <TEREKHOV at de.ibm.com>
  391. * sem_timedwait() had an incorrect timeout calculation.
  392. - Philippe Di Cristo  <philipped at voicebox.com>
  393. * Fix a memory leak left behind after threads are destroyed.
  394. - P. van Bruggen  <pietvb at newbridges.nl>
  395. New features
  396. ------------
  397. * Ported to AMD64.
  398. - Makoto Kato  <raven at oldskool.jp>
  399. * True pre-emptive asynchronous cancelation of threads. This is optional
  400. and requires that Panagiotis E. Hadjidoukas's QueueUserAPCEx package be
  401. installed. This package is included in the pthreads-win32 self-unpacking
  402. Zip archive starting from this snapshot. See the README.txt file inside
  403. the package for installation details.
  404. Note: If you don't use async cancelation in your application, or don't need
  405. to cancel threads that are blocked on system resources such as network I/O,
  406. then the default non-preemptive async cancelation is probably good enough.
  407. However, pthreads-win32 auto-detects the availability of these components
  408. at run-time, so you don't need to rebuild the library from source if you
  409. change your mind later.
  410. All of the advice available in books and elsewhere on the undesirability
  411. of using async cancelation in any application still stands, but this
  412. feature is a welcome addition with respect to the library's conformance to
  413. the POSIX standard.
  414. SNAPSHOT 2003-09-18
  415. -------------------
  416. Cleanup of thread priority management. In particular, setting of thread
  417. priority now attempts to map invalid Win32 values within the range returned
  418. by sched_get_priority_min/max() to useful values. See README.NONPORTABLE
  419. under "Thread priority".
  420. Bug fixes
  421. ---------
  422. * pthread_getschedparam() now returns the priority given by the most recent
  423. call to pthread_setschedparam() or established by pthread_create(), as
  424. required by the standard. Previously, pthread_getschedparam() incorrectly
  425. returned the running thread priority at the time of the call, which may have
  426. been adjusted or temporarily promoted/demoted.
  427. * sched_get_priority_min() and sched_get_priority_max() now return -1 on error
  428. and set errno. Previously, they incorrectly returned the error value directly.
  429. SNAPSHOT 2003-09-04
  430. -------------------
  431. Bug fixes
  432. ---------
  433. * ptw32_cancelableWait() now allows cancelation of waiting implicit POSIX
  434. threads.
  435. New test
  436. --------
  437. * cancel8.c tests cancelation of Win32 threads waiting at a POSIX cancelation
  438. point.
  439. SNAPSHOT 2003-09-03
  440. -------------------
  441. Bug fixes
  442. ---------
  443. * pthread_self() would free the newly created implicit POSIX thread handle if
  444. DuplicateHandle failed instead of recycle it (very unlikely).
  445. * pthread_exit() was neither freeing nor recycling the POSIX thread struct
  446. for implicit POSIX threads.
  447. New feature - Cancelation of/by Win32 (non-POSIX) threads
  448. ---------------------------------------------------------
  449. Since John Bossom's original implementation, the library has allowed non-POSIX
  450. initialised threads (Win32 threads) to call pthreads-win32 routines and
  451. therefore interact with POSIX threads. This is done by creating an on-the-fly
  452. POSIX thread ID for the Win32 thread that, once created, allows fully
  453. reciprical interaction. This did not extend to thread cancelation (async or
  454. deferred). Now it does.
  455. Any thread can be canceled by any other thread (Win32 or POSIX) if the former
  456. thread's POSIX pthread_t value is known. It's TSD destructors and POSIX
  457. cleanup handlers will be run before the thread exits with an exit code of
  458. PTHREAD_CANCELED (retrieved with GetExitCodeThread()).
  459. This allows a Win32 thread to, for example, call POSIX CV routines in the same way
  460. that POSIX threads would/should, with pthread_cond_wait() cancelability and
  461. cleanup handlers (pthread_cond_wait() is a POSIX cancelation point).
  462. By adding cancelation, Win32 threads should now be able to call all POSIX
  463. threads routines that make sense including semaphores, mutexes, condition
  464. variables, read/write locks, barriers, spinlocks, tsd, cleanup push/pop,
  465. cancelation, pthread_exit, scheduling, etc.
  466. Note that these on-the-fly 'implicit' POSIX thread IDs are initialised as detached
  467. (not joinable) with deferred cancelation type. The POSIX thread ID will be created
  468. automatically by any POSIX routines that need a POSIX handle (unless the routine
  469. needs a pthread_t as a parameter of course). A Win32 thread can discover it's own
  470. POSIX thread ID by calling pthread_self(), which will create the handle if
  471. necessary and return the pthread_t value.
  472. New tests
  473. ---------
  474. Test the above new feature.
  475. SNAPSHOT 2003-08-19
  476. -------------------
  477. This snapshot fixes some accidental corruption to new test case sources.
  478. There are no changes to the library source code.
  479. SNAPSHOT 2003-08-15
  480. -------------------
  481. Bug fixes
  482. ---------
  483. * pthread.dsp now uses correct compile flags (/MD).
  484. - Viv  <vcotirlea@hotmail.com>
  485. * pthread_win32_process_detach_np() fixed memory leak.
  486. - Steven Reddie  <Steven.Reddie@ca.com>
  487. * pthread_mutex_destroy() fixed incorrect return code.
  488. - Nicolas Barry  <boozai@yahoo.com>
  489. * pthread_spin_destroy() fixed memory leak.
  490. - Piet van Bruggen  <pietvb@newbridges.nl>
  491. * Various changes to tighten arg checking, and to work with later versions of
  492. MinGW32 and MsysDTK.
  493. * pthread_getschedparam() etc, fixed dangerous thread validity checking.
  494. - Nicolas Barry  <boozai@yahoo.com>
  495. * POSIX thread handles are now reused and their memory is not freed on thread exit.
  496. This allows for stronger thread validity checking.
  497. New standard routine
  498. --------------------
  499. * pthread_kill() added to provide thread validity checking to applications.
  500. It does not accept any non zero values for the signal arg.
  501. New test cases
  502. --------------
  503. * New test cases to confirm validity checking, pthread_kill(), and thread reuse.
  504. SNAPSHOT 2003-05-10
  505. -------------------
  506. Bug fixes
  507. ---------
  508. * pthread_mutex_trylock() now returns correct error values.
  509. pthread_mutex_destroy() will no longer destroy a recursively locked mutex.
  510. pthread_mutex_lock() is no longer inadvertantly behaving as a cancelation point.
  511. - Thomas Pfaff  <tpfaff@gmx.net>
  512. * pthread_mutex_timedlock() no longer occasionally sets incorrect mutex
  513. ownership, causing deadlocks in some applications.
  514. - Robert Strycek <strycek@posam.sk> and Alexander Terekhov  <TEREKHOV@de.ibm.com>
  515. SNAPSHOT 2002-11-04
  516. -------------------
  517. Bug fixes
  518. ---------
  519. * sem_getvalue() now returns the correct value under Win NT and WinCE.
  520. - Rob Fanner  <rfanner@stonethree.com>
  521. * sem_timedwait() now uses tighter checks for unreasonable
  522. abstime values - that would result in unexpected timeout values.
  523. * ptw32_cond_wait_cleanup() no longer mysteriously consumes
  524. CV signals but may produce more spurious wakeups. It is believed
  525. that the sem_timedwait() call is consuming a CV signal that it
  526. shouldn't.
  527. - Alexander Terekhov  <TEREKHOV@de.ibm.com>
  528. * Fixed a memory leak in ptw32_threadDestroy() for implicit threads.
  529. * Fixed potential for deadlock in pthread_cond_destroy().
  530. A deadlock could occur for statically declared CVs (PTHREAD_COND_INITIALIZER),
  531. when one thread is attempting to destroy the condition variable while another
  532. is attempting to dynamically initialize it.
  533. - Michael Johnson  <michaelj@maine.rr.com>
  534. SNAPSHOT 2002-03-02
  535. -------------------
  536. Cleanup code default style. (IMPORTANT)
  537. ----------------------------------------------------------------------
  538. Previously, if not defined, the cleanup style was determined automatically
  539. from the compiler/language, and one of the following was defined accordingly:
  540.         __CLEANUP_SEH   MSVC only
  541.         __CLEANUP_CXX   C++, including MSVC++, GNU G++
  542.         __CLEANUP_C             C, including GNU GCC, not MSVC
  543. These defines determine the style of cleanup (see pthread.h) and,
  544. most importantly, the way that cancelation and thread exit (via
  545. pthread_exit) is performed (see the routine ptw32_throw() in private.c).
  546. In short, the exceptions versions of the library throw an exception
  547. when a thread is canceled or exits (via pthread_exit()), which is
  548. caught by a handler in the thread startup routine, so that the
  549. the correct stack unwinding occurs regardless of where the thread
  550. is when it's canceled or exits via pthread_exit().
  551. In this and future snapshots, unless the build explicitly defines (e.g.
  552. via a compiler option) __CLEANUP_SEH, __CLEANUP_CXX, or __CLEANUP_C, then
  553. the build NOW always defaults to __CLEANUP_C style cleanup. This style
  554. uses setjmp/longjmp in the cancelation and pthread_exit implementations,
  555. and therefore won't do stack unwinding even when linked to applications
  556. that have it (e.g. C++ apps). This is for consistency with most
  557. current commercial Unix POSIX threads implementations. Compaq's TRU64
  558. may be an exception (no pun intended) and possible future trend.
  559. Although it was not clearly documented before, it is still necessary to
  560. build your application using the same __CLEANUP_* define as was
  561. used for the version of the library that you link with, so that the
  562. correct parts of pthread.h are included. That is, the possible
  563. defines require the following library versions:
  564.         __CLEANUP_SEH   pthreadVSE.dll
  565.         __CLEANUP_CXX   pthreadVCE.dll or pthreadGCE.dll
  566.         __CLEANUP_C     pthreadVC.dll or pthreadGC.dll
  567. E.g. regardless of whether your app is C or C++, if you link with
  568. pthreadVC.lib or libpthreadGC.a, then you must define __CLEANUP_C.
  569. THE POINT OF ALL THIS IS: if you have not been defining one of these
  570. explicitly, then the defaults as described at the top of this
  571. section were being used.
  572. THIS NOW CHANGES, as has been explained above, but to try to make this
  573. clearer here's an example:
  574. If you were building your application with MSVC++ i.e. using C++
  575. exceptions and not explicitly defining one of __CLEANUP_*, then
  576. __CLEANUP_C++ was automatically defined for you in pthread.h.
  577. You should have been linking with pthreadVCE.dll, which does
  578. stack unwinding.
  579. If you now build your application as you had before, pthread.h will now
  580. automatically set __CLEANUP_C as the default style, and you will need to
  581. link with pthreadVC.dll. Stack unwinding will now NOT occur when a thread
  582. is canceled, or the thread calls pthread_exit().
  583. Your application will now most likely behave differently to previous
  584. versions, and in non-obvious ways. Most likely is that locally
  585. instantiated objects may not be destroyed or cleaned up after a thread
  586. is canceled.
  587. If you want the same behaviour as before, then you must now define
  588. __CLEANUP_C++ explicitly using a compiler option and link with
  589. pthreadVCE.dll as you did before.
  590. WHY ARE WE MAKING THE DEFAULT STYLE LESS EXCEPTION-FRIENDLY?
  591. Because no commercial Unix POSIX threads implementation allows you to
  592. choose to have stack unwinding. Therefore, providing it in pthread-win32
  593. as a default is dangerous. We still provide the choice but unless
  594. you consciously choose to do otherwise, your pthreads applications will
  595. now run or crash in similar ways irrespective of the threads platform
  596. you use. Or at least this is the hope.
  597. WHY NOT REMOVE THE EXCEPTIONS VERSIONS OF THE LIBRARY ALTOGETHER?
  598. There are a few reasons:
  599. - because there are well respected POSIX threads people who believe
  600.   that POSIX threads implementations should be exceptions aware and
  601.   do the expected thing in that context. (There are equally respected
  602.   people who believe it should not be easily accessible, if it's there
  603.   at all, for unconditional conformity to other implementations.)
  604. - because pthreads-win32 is one of the few implementations that has
  605.   the choice, perhaps the only freely available one, and so offers
  606.   a laboratory to people who may want to explore the effects;
  607. - although the code will always be around somewhere for anyone who
  608.   wants it, once it's removed from the current version it will not be
  609.   nearly as visible to people who may have a use for it.
  610. Source module splitting
  611. -----------------------
  612. In order to enable smaller image sizes to be generated
  613. for applications that link statically with the library,
  614. most routines have been separated out into individual
  615. source code files.
  616. This is being done in such a way as to be backward compatible.
  617. The old source files are reused to congregate the individual
  618. routine files into larger translation units (via a bunch of
  619. # includes) so that the compiler can still optimise wherever
  620. possible, e.g. through inlining, which can only be done
  621. within the same translation unit.
  622. It is also possible to build the entire library by compiling
  623. the single file named "pthread.c", which just #includes all
  624. the secondary congregation source files. The compiler
  625. may be able to use this to do more inlining of routines.
  626. Although the GNU compiler is able to produce libraries with
  627. the necessary separation (the -ffunction-segments switch),
  628. AFAIK, the MSVC and other compilers don't have this feature.
  629. Finally, since I use makefiles and command-line compilation,
  630. I don't know what havoc this reorganisation may wreak amongst
  631. IDE project file users. You should be able to continue
  632. using your existing project files without modification.
  633. New non-portable functions
  634. --------------------------
  635. pthread_num_processors_np():
  636.   Returns the number of processors in the system that are
  637.   available to the process, as determined from the processor
  638.   affinity mask.
  639. pthread_timechange_handler_np():
  640.   To improve tolerance against operator or time service initiated
  641.   system clock changes.
  642.   This routine can be called by an application when it
  643.   receives a WM_TIMECHANGE message from the system. At present
  644.   it broadcasts all condition variables so that waiting threads
  645.   can wake up and re-evaluate their conditions and restart
  646.   their timed waits if required.
  647.   - Suggested by Alexander Terekhov
  648. Platform dependence
  649. -------------------
  650. As Win95 doesn't provide one, the library now contains
  651. it's own InterlockedCompareExchange() routine, which is used
  652. whenever Windows doesn't provide it. InterlockedCompareExchange()
  653. is used to implement spinlocks and barriers, and also in mutexes.
  654. This routine relies on the CMPXCHG machine instruction which
  655. is not available on i386 CPUs. This library (from snapshot
  656. 20010712 onwards) is therefore no longer supported on i386
  657. processor platforms.
  658. New standard routines
  659. ---------------------
  660. For source code portability only - rwlocks cannot be process shared yet.
  661.         pthread_rwlockattr_init()
  662.         pthread_rwlockattr_destroy()
  663.         pthread_rwlockattr_setpshared()
  664.         pthread_rwlockattr_getpshared()
  665. As defined in the new POSIX standard, and the Single Unix Spec version 3:
  666.         sem_timedwait()
  667.         pthread_mutex_timedlock()    - Alexander Terekhov and Thomas Pfaff
  668.         pthread_rwlock_timedrdlock() - adapted from pthread_rwlock_rdlock()
  669.         pthread_rwlock_timedwrlock() - adapted from pthread_rwlock_wrlock()
  670. pthread.h no longer includes windows.h
  671. --------------------------------------
  672. [Not yet for G++]
  673. This was done to prevent conflicts.
  674. HANDLE, DWORD, and NULL are temporarily defined within pthread.h if
  675. they are not already.
  676. pthread.h, sched.h and semaphore.h now use dllexport/dllimport
  677. --------------------------------------------------------------
  678. Not only to avoid the need for the pthread.def file, but to
  679. improve performance. Apparently, declaring functions with dllimport
  680. generates a direct call to the function and avoids the overhead
  681. of a stub function call.
  682. Bug fixes
  683. ---------
  684. * Fixed potential NULL pointer dereferences in pthread_mutexattr_init,
  685. pthread_mutexattr_getpshared, pthread_barrierattr_init,
  686. pthread_barrierattr_getpshared, and pthread_condattr_getpshared.
  687. - Scott McCaskill <scott@magruder.org>
  688. * Removed potential race condition in pthread_mutex_trylock and
  689. pthread_mutex_lock;
  690. - Alexander Terekhov <TEREKHOV@de.ibm.com>
  691. * The behaviour of pthread_mutex_trylock in relation to
  692. recursive mutexes was inconsistent with commercial implementations.
  693. Trylock would return EBUSY if the lock was owned already by the
  694. calling thread regardless of mutex type. Trylock now increments the
  695. recursion count and returns 0 for RECURSIVE mutexes, and will
  696. return EDEADLK rather than EBUSY for ERRORCHECK mutexes. This is
  697. consistent with Solaris.
  698. - Thomas Pfaff <tpfaff@gmx.net>
  699. * Found a fix for the library and workaround for applications for
  700. the known bug #2, i.e. where __CLEANUP_CXX or __CLEANUP_SEH is defined.
  701. See the "Known Bugs in this snapshot" section below.
  702. This could be made transparent to applications by replacing the macros that
  703. define the current C++ and SEH versions of pthread_cleanup_push/pop
  704. with the C version, but AFAIK cleanup handlers would not then run in the
  705. correct sequence with destructors and exception cleanup handlers when
  706. an exception occurs.
  707. * Cancelation once started in a thread cannot now be inadvertantly
  708. double canceled. That is, once a thread begins it's cancelation run,
  709. cancelation is disabled and a subsequent cancel request will
  710. return an error (ESRCH).
  711. * errno: An incorrect compiler directive caused a local version
  712. of errno to be used instead of the Win32 errno. Both instances are
  713. thread-safe but applications checking errno after a pthreads-win32
  714. call would be wrong. Fixing this also fixed a bad compiler
  715. option in the testsuite (/MT should have been /MD) which is
  716. needed to link with the correct library MSVCRT.LIB.
  717. SNAPSHOT 2001-07-12
  718. -------------------
  719. To be added
  720. SNAPSHOT 2001-07-03
  721. -------------------
  722. To be added
  723. SNAPSHOT 2000-08-13
  724. -------------------
  725. New:
  726. -       Renamed DLL and LIB files:
  727.                 pthreadVSE.dll  (MS VC++/Structured EH)
  728.                 pthreadVSE.lib
  729.                 pthreadVCE.dll  (MS VC++/C++ EH)
  730.                 pthreadVCE.lib
  731.                 pthreadGCE.dll  (GNU G++/C++ EH)
  732.                 libpthreadw32.a
  733.         Both your application and the pthread dll should use the
  734.         same exception handling scheme.
  735. Bugs fixed:
  736. -       MSVC++ C++ exception handling.
  737. Some new tests have been added.
  738. SNAPSHOT 2000-08-10
  739. -------------------
  740. New:
  741. -       asynchronous cancelation on X86 (Jason Nye)
  742. -       Makefile compatible with MS nmake to replace
  743.         buildlib.bat
  744. -       GNUmakefile for Mingw32
  745. -       tests/Makefile for MS nmake replaces runall.bat
  746. -       tests/GNUmakefile for Mingw32
  747. Bugs fixed:
  748. -       kernel32 load/free problem
  749. -       attempt to hide internel exceptions from application
  750.         exception handlers (__try/__except and try/catch blocks)
  751. -       Win32 thread handle leakage bug
  752.         (David Baggett/Paul Redondo/Eyal Lebedinsky)
  753. Some new tests have been added.
  754. SNAPSHOT 1999-11-02
  755. -------------------
  756. Bugs fixed:
  757. -       ctime_r macro had an incorrect argument (Erik Hensema),
  758. -       threads were not being created 
  759.         PTHREAD_CANCEL_DEFERRED. This should have
  760.         had little effect as deferred is the only
  761.         supported type. (Ross Johnson).
  762. Some compatibility improvements added, eg.
  763. -       pthread_setcancelstate accepts NULL pointer
  764.         for the previous value argument. Ditto for
  765.         pthread_setcanceltype. This is compatible
  766.         with Solaris but should not affect
  767.         standard applications (Erik Hensema)
  768. Some new tests have been added.
  769. SNAPSHOT 1999-10-17
  770. -------------------
  771. Bug fix - Cancelation of threads waiting on condition variables
  772. now works properly (Lorin Hochstein and Peter Slacik)
  773. SNAPSHOT 1999-08-12
  774. -------------------
  775. Fixed exception stack cleanup if calling pthread_exit()
  776. - (Lorin Hochstein and John Bossom).
  777. Fixed bugs in condition variables - (Peter Slacik):
  778.         - additional contention checks
  779.         - properly adjust number of waiting threads after timed
  780.           condvar timeout.
  781. SNAPSHOT 1999-05-30
  782. -------------------
  783. Some minor bugs have been fixed. See the ChangeLog file for details.
  784. Some more POSIX 1b functions are now included but ony return an
  785. error (ENOSYS) if called. They are:
  786.         sem_open
  787.         sem_close
  788.         sem_unlink
  789.         sem_getvalue
  790. SNAPSHOT 1999-04-07
  791. -------------------
  792. Some POSIX 1b functions which were internally supported are now
  793. available as exported functions:
  794.         sem_init
  795.         sem_destroy
  796.         sem_wait
  797.         sem_trywait
  798.         sem_post
  799.         sched_yield
  800.         sched_get_priority_min
  801.         sched_get_priority_max
  802. Some minor bugs have been fixed. See the ChangeLog file for details.
  803. SNAPSHOT 1999-03-16
  804. -------------------
  805. Initial release.