libchild-perl 0.013-1.1 source package in Ubuntu
Changelog
libchild-perl (0.013-1.1) unstable; urgency=medium * Non maintainer upload by the Reproducible Builds team. * No source change upload to rebuild on buildd with .buildinfo files. -- Holger Levsen <email address hidden> Tue, 05 Jan 2021 16:09:40 +0100
Upload details
- Uploaded by:
- Debian Perl Group on 2021-01-05
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Hirsute | release | on 2021-01-06 | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libchild-perl_0.013-1.1.dsc | 2.1 KiB | 4ddbf327736fa264bd63013437f12db039fdd97bc1c7b83f95a5fabcebbbcd42 |
libchild-perl_0.013.orig.tar.gz | 16.0 KiB | 65ad57eabc53a85e2b7c6146136969d26f2d3639d8ae4c486beea5982041e860 |
libchild-perl_0.013-1.1.debian.tar.xz | 2.4 KiB | 398bca02c40cd1e683e22d2e7c152b9df56ad49a561a4f7f960f0c3405c73be8 |
Available diffs
- diff from 0.013-1 to 0.013-1.1 (351 bytes)
No changes file available.
Binary packages built by this source
- libchild-perl: Object Oriented simple interface to fork()
Fork is too low level, and difficult to manage. Often people forget to exit
at the end, reap their children, and check exit status. The problem is the
low level functions provided to do these things. Throw in pipes for IPC and
you just have a pile of things nobody wants to think about.
.
Child is an Object Oriented interface to fork. It provides a clean way to
start a child process, and manage it afterwords. It provides methods for
running, waiting, killing, checking, and even communicating with a child
process.