threads::shared 1.12
[p5sagit/p5-mst-13.2.git] / ext / threads / Changes
index 0835079..86c4138 100755 (executable)
@@ -1,5 +1,120 @@
 Revision history for Perl extension threads.
 
+1.62 Thu May 17 16:10:49 2007
+       - Fixed :all import option
+       - Fixed problems in test suite
+       - Subversion repository on Google
+
+1.61 Wed Mar 21 16:09:15 EDT 2007
+       - Fix 'list/array' context - both keywords are supported
+       - Upgraded ppport.h to Devel::PPPort 3.11
+       - Removed embed.t - unreliable
+
+1.59 - Mon Feb  5 16:05:44 EST 2007
+       - POD tweaks per Wolfgang Laun
+
+1.58 Wed Jan 24 13:15:34 EST 2007
+       - Fix race conditions on thread destruction (Dave Mitchell)
+       - Ignore thread return value(s) in void context
+       - Check for missing args for 'use threads' options
+       - Check that stack size argument is numeric
+
+1.57 Wed Dec 20 13:10:26 EST 2006
+       - Fixes courtesy of Michael J. Pomraning
+           Eliminates self joins.
+           Eliminates multiple, simultaneous joins on a thread.
+           Protects thread->state variable with mutexes.
+           Checks that OS join call is successful.
+
+1.56 Fri Dec 15 12:18:47 EST 2006
+       - More fixes to test suite
+
+1.55 Fri Dec 15 11:24:46 EST 2006
+       - Fixes to test suite
+
+1.54 Thu Dec 14 14:12:30 EST 2006
+       - Added ->error() method
+
+1.53 Mon Nov 27 12:08:27 EST 2006
+       - Fix for a thread cloning bug
+       - Fixes to test suite
+
+1.52 Tue Nov 21 11:04:03 EST 2006
+       - Fix compiler warnings
+
+1.51 Wed Nov 15 14:25:30 EST 2006
+       - Thread destruction fix
+
+1.49 Fri Nov  3 08:33:28 EST 2006
+       - Fix a warning message
+
+1.48 Thu Nov  2 12:33:22 EST 2006
+       - Fix for segfault during thread destruction
+
+1.47 Mon Oct 30 16:02:53 EST 2006
+       - Fix t/thread.t crash under Win32
+       - Test multiple embedded Perl support
+
+1.46 Fri Oct 27 19:51:48 EST 2006
+       - Support multiple embedded Perls
+       - Document workaround for non-threadsafe modules
+
+1.45 Wed Oct 25 14:22:23 EDT 2006
+       - Makefile.PL changes for CORE
+       - Updated POD tests
+
+1.44 Wed Oct 11 08:55:50 EDT 2006
+       - Complain about bad import options
+       - Added example threads script
+
+1.43 Fri Oct  6 15:12:07 EDT 2006
+       - Stringify threads objects
+       - Removed 'typemap' file
+
+1.42 Mon Sep 18 11:17:13 EDT 2006
+       - Fixes to tests
+       - Move $threads::threads outside of BEGIN block
+
+1.41 Fri Sep  8 19:28:41 EST 2006
+       - Race condition fixes
+
+1.39 Tue Aug 30 12:00:00 EDT 2006
+       - Signals are safe in 5.8.0
+       - Upgraded ppport.h to Devel::PPPort 3.10
+
+1.38 Tue Aug  1 11:48:56 EDT 2006
+       - Fixes to tests
+
+1.37 Fri Jul 21 10:51:36 EDT 2006
+       - Revert 'exit' behavior with override
+
+1.36 Mon Jul 10 15:58:13 EDT 2006
+       - Ignore signals sent to terminated threads
+
+1.35 Mon Jul 10 09:44:47 EDT 2006
+       - Upgraded ppport.h to Devel::PPPort 3.09
+       - Fix for Borland compiler
+
+1.34 Thu Jul  6 10:29:37 EDT 2006
+       - Added ->is_running, ->is_detached, ->is_joinable, ->wantarray
+       - Enhanced ->list to return running or joinable threads
+
+1.33 Mon Jul  3 10:11:20 EDT 2006
+       - 'exit' inside a thread silently terminates thread only
+       - Added 'threads->exit()' (just calls CORE::exit(0))
+       - Handle 'die/exit' in thread warn handlers if thread terminates
+           with a warning
+       - Give exact accounting of unjoined threads on program termination
+       - Fix spurious 'failures' from t/blocks.t
+       - Set correct path to threads module in tests that use test.pl
+
+1.32 Mon Jun  5 09:27:53 EDT 2006
+       - Fix for HP-UX 10.20 pthread_attr_getstacksize usage
+       - Check for threads::shared in tests
+
+1.31 Fri May 19 16:06:42 EDT 2006
+       - Explicit thread context
+
 1.29 Thu May 18 16:09:28 EDT 2006
        - Fix warning/core dump from ->create('foo') in BEGIN block