summaryrefslogtreecommitdiff
path: root/dist/threads/lib/threads.pm
Commit message (Collapse)AuthorAgeFilesLines
* bump versions of perl modules updated in AmigaOS branchRicardo Signes2015-09-061-1/+1
|
* Upgrade to threads 2.02Jerry D. Hedden2015-06-121-2/+2
|
* Upgrade to threads 2.01Jerry D. Hedden2015-03-171-2/+2
|
* Upgrade to threads 1.99Jerry D. Hedden2015-03-061-2/+2
|
* Upgrade to threads 1.98Jerry D. Hedden2015-03-051-2/+2
|
* Upgrade to threads 1.97Jerry D. Hedden2015-03-031-2/+2
| | | | | Committer actions: (1) regen for t/porting/customized.dat. (2) perldelta for update to threads.
* threads.pm version bump for 0c87ebb8.Jarkko Hietaniemi2014-12-061-1/+1
|
* Upgrade to threads 1.96Jerry D. Hedden2014-08-271-2/+2
|
* static misc things in /dist/threads/threads.xsDaniel Dragan2014-07-071-1/+1
| | | | | | there is no reason for these functions to be exported on a linux build, since they aren't exported on Win32, also consting ithread_vtbl allows more memory to be shared between perl procs
* Bring a long line in threads.pm under 80 colskafka2014-06-041-1/+2
| | | | For: https://rt.perl.org/Ticket/Display.html?id=121873
* Version bumping thanks to the Coverity deluge.Jarkko Hietaniemi2014-05-291-1/+1
|
* officially discourage the use of threadsRicardo Signes2014-03-051-1/+11
| | | | some language borrowed from a larger patch by Christian Walde
* Upgrade to threads 1.92Jerry D. Hedden2014-02-051-2/+2
|
* fix 'ignoring return value' compiler warningsDavid Mitchell2013-11-241-1/+1
| | | | | | | | | | | Various system functions like write() are marked with the __warn_unused_result__ attribute, which causes an 'ignoring return value' warning to be emitted, even if the function call result is cast to (void). The generic solution seems to be int rc = write(...); PERL_UNUSED_VAR(rc);
* threads: silence some compiler warnings.David Mitchell2013-11-181-1/+1
| | | | | | | | | From 5.8.9, the MGVTBL struct has a 'svt_local' member Declare some vars volatile within a function that uses jongjmp Mark the unused return value from PerlLIO_write() as void(), even though it won't shut up gcc.
* Upgrade to threads 1.88Jerry D. Hedden2013-09-281-9/+9
|
* better pod for threads::_handleDaniel Dragan2013-09-281-3/+4
| | | | | | | | | | First time I tried to get the OS handle I wrote unpack('P[Q || L /*PICK ONE*/]', $thread->_handle()) it crashed because _handle returns a number, not a packed string. unpack wants a packed string. Mention the pointer is numeric and not to ever pass the retval to unpack('P[.
* Upgrade to threads 1.87Jerry D. Hedden2013-05-291-5/+5
|
* Increase $threads::VERSION to 1.86Father Chrysostomos2011-12-021-2/+2
|
* Upgrade to threads 1.85Jerry D. Hedden2011-09-031-1/+1
|
* Bump threads(::shared) versions againFather Chrysostomos2011-09-021-2/+2
| | | | | | Since these numbers have already been used for developement releases, they need to be changed again. I also added a note to make sure they no longer get out of sync with the pod.
* Upgrade to threads 1.84Jerry D. Hedden2011-09-021-1/+31
|
* In threads.xs, remove num_args from ithread_create, as it is unused.Nicholas Clark2011-07-061-1/+1
| | | | It has never been used - it was added unused with commit 680818c0361b180b.
* Fix broken URL in dist/threads/lib/threads.pm for the itheads mailing listLeon Brocard2011-06-121-1/+1
|
* Upgrade to threads 1.83Jerry D. Hedden2011-04-191-1/+1
|
* In S_ithread_create, reduce the amount of conditionally compiled C code.Nicholas Clark2011-01-111-1/+1
| | | | | With a small amount of refactoring, compatibility across different perl versions can be achieved with less duplication.
* [PATCH] Upgrade to threads 1.82Jerry D. Hedden2010-12-241-8/+2
| | | | Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
* bump version of many modulesZefram2010-12-191-1/+1
| | | | | Core-only modules that have changed from v5.13.7, and dual-life modules that have changed from v5.13.7 and didn't show up in earlier passes.
* Increase threads’ versionFather Chrysostomos2010-11-111-1/+1
|
* Correct note about dir handles in threads.pmFather Chrysostomos2010-11-111-2/+2
|
* Correct threads versionFather Chrysostomos2010-10-141-1/+1
|
* Change the perl version mentioned in threads.pm concerning dirhandlesFather Chrysostomos2010-10-141-2/+2
| | | | as this may change before 5.14.
* Update the dirhandle entry in thread.pm’s docsFather Chrysostomos2010-09-271-2/+8
|
* [perl #78088] [PATCH] Upgrade to threads 1.81Jerry D. Hedden2010-09-281-3/+3
| | | | | | | [DELTA] The attached patch makes the CPAN distribution of 'threads' compatible with with v5.13.2 and later.
* [perl #78000] [PATCH] Upgrade to threads 1.79Jerry D. Hedden2010-09-241-3/+9
| | | | | | Attached is a revised patch to upgrade to v1.79. I needed to fix the tests in the newly added t/kill2.t file. The blead version will be 1.79_01.
* Reorganize dist/threadsJerry D. Hedden2010-07-081-0/+1079
Move threads.pm to lib/threads.pm and remove Makefile.PL