• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/H11-Mar-2009-613239

lib/IPC/H11-Mar-2009-589168

t/H11-Mar-2009-140104

ChangesH A D11-Mar-20093.1 KiB9071

MANIFESTH A D11-Mar-2009362 1817

META.ymlH A D11-Mar-2009609 2625

Makefile.PLH A D09-Mar-20091.5 KiB6652

READMEH A D09-Mar-20091.5 KiB5236

SIGNATUREH A D11-Mar-20091.6 KiB4033

ShareLite.xsH A D08-Mar-20095.8 KiB341321

sharestuff.cH A D09-Mar-200915.6 KiB669539

sharestuff.hH A D08-Mar-20092.2 KiB7546

typemapH A D23-Feb-200895 117

README

1IPC::ShareLite 0.17
2
3DESCRIPTION
4
5  IPC::ShareLite provides a simple interface to shared memory, allowing
6  data to be efficiently communicated between processes.  Your operating
7  system must support SysV IPC (shared memory and semaphores) in order to
8  use this module.
9
10COPYRIGHT & TERMS
11
12  Copyright 1998-2002, Maurice Aubrey <maurice@hevanet.com>.
13  All rights reserved.
14
15  This module is free software; you may redistribute it and/or
16  modify it under the same terms as Perl itself.
17
18  THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
19  EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DAMAGES RESULTING FROM
22  THE USE OF THIS SOFTWARE.
23
24PREREQUISITES
25
26  This module requires perl 5.004 or later.
27
28INSTALLATION
29
30  To install this module, move into the directory where this file is
31  located and type the following:
32
33        perl Makefile.PL
34        make
35        make test
36        make install
37
38  This will install the module into the Perl library directory.  If
39  you lack sufficient privileges for this, then you can specify an
40  alternate directory like this:
41
42        perl Makefile.PL PREFIX=/where/I/want/it/put
43        make
44        make test
45        make install
46
47  See the POD documentation for further details.  Once the module
48  is installed, you should be able to read the documentation by
49  typing the following from the command-line:
50
51	perldoc IPC::ShareLite
52