Since Perl 5.8, thread programming has been available using a model called *interpreter threads* which provides a new Perl interpreter for each thread, and, by default, results in no data or state information being shared between threads. (Prior to P...
JDHEDDEN/threads-2.21 - 23 Jan 2018 01:14:04 UTCThis module implements threads for perl. One crucial difference with "threads.pm" threads is that the threads are disconnected, except by message queues. It thus facilitates a message passing style of multi-threading. Please note that this module is ...
LEONT/threads-lite-0.034 - 08 May 2015 21:48:46 UTCLNATION/threads-farm-0.03 - 02 Jul 2020 11:10:40 UTC
This module extends threads to provide behaviors that are more conformant to what POSIX prescribes. You should realize that this doesn't in any way change the threads themselves, just how you intereract with them. Everything not described here should...
LEONT/threads-posix-0.003 - 03 Jul 2016 20:19:17 UTCBy default, variables are private to each thread, and each newly created thread gets a private copy of each existing variable. This module allows you to share variables across different threads (and pseudo-forks on Win32). It is used together with th...
JDHEDDEN/threads-shared-1.59 - 30 Nov 2018 02:44:44 UTCJILLROWE/HPC-Runner-Threads-2.35 - 18 Jun 2015 05:47:26 UTC
LEONT/threads-lite-0.034 - 08 May 2015 21:48:46 UTC
Helper class for forks::shared. See documentation there....
RYBSKEJ/forks-0.36 - 27 Jun 2014 03:55:32 UTCA channel class providing queue-like and two-way communication for threads only. Locking is handled using threads::shared. The API is described in MCE::Channel. new use MCE::Channel; # The default is tuned for one producer and many consumers. my $chn...
MARIOROY/MCE-1.874 - 18 Aug 2020 20:56:15 UTCI want to have my perl-gtk app query a database using DBI and display the query results. Some of the queries can take minutes to run and a naive implementation would mean all GUI interaction was blocked until the $dbh->execute returned. This seems to...
OFEYAIKON/Gtk2-Ex-Threads-DBI-0.06 - 30 Sep 2005 16:13:09 UTCThis module provides a means to share PDL data between different Perl threads. In contrast to PDL's posix thread support (see PDL::Parallel::CPU or, for older versions of PDL, PDL::ParallelCPU), this module lets you work with Perl's built-in threadin...
DCMERTENS/PDL-Parallel-threads-0.03 - 02 Jan 2013 23:18:20 UTCHelper class for forks::shared. See documentation there....
RYBSKEJ/forks-0.36 - 27 Jun 2014 03:55:32 UTCHelper class for forks::shared. See documentation there....
RYBSKEJ/forks-0.36 - 27 Jun 2014 03:55:32 UTCHelper class for forks::shared. See documentation there....
RYBSKEJ/forks-0.36 - 27 Jun 2014 03:55:32 UTCIt is fairly common to write tests that need to use threads. Not all systems support threads. This library does the hard work of checking if threading is supported on the current system. If threading is not supported then this will skip all tests and...
EXODIST/Test2-Suite-0.000139 - 16 Dec 2020 03:49:48 UTC