File: control

package info (click to toggle)
liblinux-pid-perl 0.04-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 84 kB
  • ctags: 2
  • sloc: perl: 70; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: liblinux-pid-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>,
           gregor herrmann <gregoa@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9.20120312~),
               perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/liblinux-pid-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/liblinux-pid-perl.git
Homepage: https://metacpan.org/release/Linux-Pid

Package: liblinux-pid-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends}
Description: wrapper around the getpid() and getppid() C functions
 Perl already returns the PID and PPID in variables and builtins. Linux::Pid
 forces perl to call the underlying C functions getpid() and getppid().
 .
 This is useful with multithreaded programs. Linux' C library, using the Linux
 thread model, returns different values of the PID and the PPID from different
 threads.
 .
 A known consumer of this functionality is Apache2::SizeLimit (in
 libapache2-mod-perl2).