The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:ipc"

IPC::MM - Perl interface to Ralf Engelschall's mm library River stage zero No dependents

IPC::MM provides an interface to Ralf Engelschall's mm library, allowing memory to be shared between multiple processes in a relatively convenient way. IPC::MM provides methods to create and destoy shared memory segments and to access data structures...

ACHOUNG/IPC-MM-0.03 - 11 Aug 2000 09:30:33 UTC

IPC::MPS - Message Passing Style of Inter-process communication River stage zero No dependents

The messaging system between parental and child processes, and between child processes, that have the same parent. Moto: inter-process communication without blocking. Concurrency programming The peculiarity of the system is that the messaging between...

KNI/IPC-MPS-0.21 - 07 Aug 2019 08:29:38 UTC

IPC::Exe - Execute processes or Perl subroutines & string them via IPC. Think shell pipes. River stage zero No dependents

This module was written to provide a secure and highly flexible way to execute external programs with an intuitive syntax. In addition, more info is returned with each string of executions, such as the list of PIDs and $? of the last external pipe pr...

GLAI/IPC-Exe-2.002001 - 14 Nov 2011 08:22:35 UTC

IPC::Shm - Easily store variables in SysV shared memory. River stage zero No dependents

KCODY/IPC-Shm-0.35 - 09 Jun 2014 00:45:15 UTC

IPC::XPA - Interface to the XPA messaging system River stage one • 1 direct dependent • 1 total dependent

This class provides access to the XPA messaging system library, "xpa", developed by the Smithsonian Astrophysical Observatory's High Energy Astrophysics R&D Group. The library provides simple inter-process communication via calls to the "xpa" library...

DJERIUS/IPC-XPA-0.16 - 21 May 2023 18:23:06 UTC

IPC::Cmd - finding and running system commands made easy River stage five • 127 direct dependents • 21420 total dependents

IPC::Cmd allows you to run commands platform independently, interactively if desired, but have them still work. The "can_run" function can tell you if a certain binary is installed and if so where, whereas the "run" function can actually execute any ...

BINGOS/IPC-Cmd-1.04 - 13 Jul 2019 09:17:39 UTC

IPC::Run - system() and background procs w/ piping, redirs, ptys (Unix, Win32) River stage four • 157 direct dependents • 1806 total dependents

IPC::Run allows you to run and interact with child processes using files, pipes, and pseudo-ttys. Both system()-style and scripted usages are supported and may be mixed. Likewise, functional and OO API styles are both supported and may be mixed. Vari...

TODDR/IPC-Run-20231003.0 - 03 Oct 2023 01:09:01 UTC

IPC::Msg - SysV Msg IPC object class River stage two • 13 direct dependents • 39 total dependents

A class providing an object based interface to SysV IPC message queues....

MHX/IPC-SysV-2.09 - 13 Nov 2020 17:02:18 UTC

Quiq::Ipc - Interprozesskommunikation River stage zero No dependents

FSEITZ/Quiq-1.215 - 28 Mar 2024 21:53:27 UTC

IPC::Lite - Share variables between processes River stage zero No dependents

EARONESTY/IPC-Lite-0.5.40 - 19 Apr 2013 14:55:41 UTC

IPC::Door - Interface to Solaris (>= 2.6) Door library River stage zero No dependents

ASARIH/IPC-Door-0.11 - 07 Jun 2005 13:14:38 UTC

IPC::Run3 - run a subprocess with input/output redirection River stage four • 102 direct dependents • 4173 total dependents

This module allows you to run a subprocess and redirect stdin, stdout, and/or stderr to files and perl data structures. It aims to satisfy 99% of the need for using "system", "qx", and "open3" with a simple, extremely Perlish API. Speed, simplicity, ...

RJBS/IPC-Run3-0.049 - 20 Jan 2024 21:13:21 UTC

IPC::SysV - System V IPC constants and system calls River stage two • 13 direct dependents • 39 total dependents

"IPC::SysV" defines and conditionally exports all the constants defined in your system include files which are needed by the SysV IPC calls. Common ones include IPC_CREAT IPC_EXCL IPC_NOWAIT IPC_PRIVATE IPC_RMID IPC_SET IPC_STAT GETVAL SETVAL GETPID ...

MHX/IPC-SysV-2.09 - 13 Nov 2020 17:02:18 UTC

IPC::Lock - simple and safe local/network locking River stage zero No dependents

Simple way to lock across multiple boxes. Child modules need to implement two methods atomic - a way to lock atomically unatomic - a way to undo your atomic function...

EARL/IPC-Lock-0.20 - 05 Mar 2010 07:35:54 UTC

Dpkg::IPC - helper functions for IPC River stage one • 6 direct dependents • 8 total dependents

Dpkg::IPC offers helper functions to allow you to execute other programs in an easy, yet flexible way, while hiding all the gory details of IPC (Inter-Process Communication) from you....

GUILLEM/Dpkg-1.22.6 - 10 Mar 2024 21:52:57 UTC

Test2::IPC - Turn on IPC for threading or forking support. River stage five • 22891 direct dependents • 32646 total dependents

EXODIST/Test-Simple-1.302198 - 30 Nov 2023 18:09:19 UTC

Win32::IPC - Base class for Win32 synchronization objects River stage one • 4 direct dependents • 5 total dependents

This module is loaded by the other Win32 synchronization modules. You shouldn't need to load it yourself. It supplies the wait functions to those modules. The synchronization modules are Win32::ChangeNotify, Win32::Event, Win32::Mutex, & Win32::Semap...

CJM/Win32-IPC-1.11 - 15 Nov 2014 18:17:29 UTC

IPC::Open2 - open a process for both reading and writing using open2() River stage five • 11292 direct dependents • 32664 total dependents

The open2() function runs the given command and connects $chld_out for reading and $chld_in for writing. It's what you think should work when you try my $pid = open(my $fh, "|cmd args|"); The $chld_in filehandle will have autoflush turned on. If $chl...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

IPC::Open3 - open a process for reading, writing, and error handling using open3() River stage five • 11292 direct dependents • 32664 total dependents

Extremely similar to open2(), open3() spawns the given command and connects $chld_out for reading from the child, $chld_in for writing to the child, and $chld_err for errors. If $chld_err is false, or the same file descriptor as $chld_out, then STDOU...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

IPC::Open3 - open a process for reading, writing, and error handling using open3() River stage five • 11292 direct dependents • 32664 total dependents

Extremely similar to open2(), open3() spawns the given command and connects $chld_out for reading from the child, $chld_in for writing to the child, and $chld_err for errors. If $chld_err is false, or the same file descriptor as $chld_out, then STDOU...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC
225 results (0.025 seconds)