Coro - the only real threads in perl https://www.cpan.org/
Go to file
2024-01-06 08:44:19 +01:00
perl-Coro-5.25-ucontext-default.patch automatic update by autodist [release 6.32-1mamba;Sat Nov 09 2013] 2024-01-06 08:44:19 +01:00
perl-Coro.spec automatic update by autodist [release 6.32-1mamba;Sat Nov 09 2013] 2024-01-06 08:44:19 +01:00
README.md automatic update by autodist [release 6.32-1mamba;Sat Nov 09 2013] 2024-01-06 08:44:19 +01:00

perl-Coro

This module collection manages continuations in general, most often in the form of cooperative threads (also called coros, or simply "coro" in the documentation). They are similar to kernel threads but don't (in general) run in parallel at the same time even on SMP machines. The specific flavor of thread offered by this module also guarantees you that it will not switch between threads unless necessary, at easily-identified points in your program, so locking and parallel access are rarely an issue, making thread programming much safer and easier than using other thread models.