Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Sys-Mmap-0.200.0-1.1 RPM for armv7hl

From OpenSuSE Ports Tumbleweed for armv7hl

Name: perl-Sys-Mmap Distribution: openSUSE Tumbleweed
Version: 0.200.0 Vendor: openSUSE
Release: 1.1 Build date: Fri Feb 14 04:15:33 2020
Group: Unspecified Build host: reproducible
Size: 53690 Source RPM: perl-Sys-Mmap-0.200.0-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://metacpan.org/release/Sys-Mmap
Summary: Uses mmap to map in a file as a Perl variable
The Sys::Mmap module uses the POSIX at https://en.wikipedia.org/wiki/Mmap
call to map in a file as a Perl variable. Memory access by mmap may be
shared between threads or forked processes, and may be a disc file that has
been mapped into memory. Sys::Mmap depends on your operating system
supporting UNIX or POSIX.1b mmap, of course.

*Note* that PerlIO now defines a ':mmap' tag and presents mmap'd files as
regular files, if that is your cup of joe.

Several processes may share one copy of the file or string, saving memory,
and concurrently making changes to portions of the file or string. When not
used with a file, it is an alternative to SysV shared memory. Unlike SysV
shared memory, there are no arbitrary size limits on the shared memory
area, and sparse memory usage is handled optimally on most modern UNIX
implementations.

Using the 'new()' method provides a 'tie()''d interface to 'mmap()' that
allows you to use the variable as a normal variable. If a filename is
provided, the file is opened and mapped in. If the file is smaller than the
length provided, the file is grown to that length. If no filename is
provided, anonymous shared inheritable memory is used. Assigning to the
variable will replace a section in the file corresponding to the length of
the variable, leaving the remainder of the file intact and unmodified.
Using 'substr()' allows you to access the file at an offset, and does not
place any requirements on the length argument to 'substr()' or the length
of the variable being inserted, provided it does not exceed the length of
the memory region. This protects you from the pathological cases involved
in using 'mmap()' directly, documented below.

When calling 'mmap()' or 'hardwire()' directly, you need to be careful how
you use the variable. Some programming constructs may create copies of a
string which, while unimportant for smallish strings, are far less welcome
if you're mapping in a file which is a few gigabytes big. If you use
'PROT_WRITE' and attempt to write to the file via the variable you need to
be even more careful. One of the few ways in which you can safely write to
the string in-place is by using 'substr()' as an lvalue and ensuring that
the part of the string that you replace is exactly the same length. Other
functions will allocate other storage for the variable, and it will no
longer overlay the mapped in file.

* Sys::Mmap->new( 'VARIABLE', 'LENGTH', 'OPTIONALFILENAME' )

Maps 'LENGTH' bytes of (the contents of) 'OPTIONALFILENAME' if
'OPTIONALFILENAME' is provided, otherwise uses anonymous, shared
inheritable memory. This memory region is inherited by any 'fork()'ed
children. 'VARIABLE' will now refer to the contents of that file. Any
change to 'VARIABLE' will make an identical change to the file. If 'LENGTH'
is zero and a file is specified, the current length of the file will be
used. If 'LENGTH' is larger then the file, and 'OPTIONALFILENAME' is
provided, the file is grown to that length before being mapped. This is the
preferred interface, as it requires much less caution in handling the
variable. 'VARIABLE' will be tied into the "Sys::Mmap" package, and
'mmap()' will be called for you.

Assigning to 'VARIABLE' will overwrite the beginning of the file for a
length of the value being assigned in. The rest of the file or memory
region after that point will be left intact. You may use 'substr()' to
assign at a given position:

    substr(VARIABLE, POSITION, LENGTH) = NEWVALUE

* mmap(VARIABLE, LENGTH, PROTECTION, FLAGS, FILEHANDLE, OFFSET)

Maps 'LENGTH' bytes of (the underlying contents of) 'FILEHANDLE' into your
address space, starting at offset 'OFFSET' and makes 'VARIABLE' refer to
that memory. The 'OFFSET' argument can be omitted in which case it defaults
to zero. The 'LENGTH' argument can be zero in which case a stat is done on
'FILEHANDLE' and the size of the underlying file is used instead.

The 'PROTECTION' argument should be some ORed combination of the constants
'PROT_READ', 'PROT_WRITE' and 'PROT_EXEC', or else 'PROT_NONE'. The
constants 'PROT_EXEC' and 'PROT_NONE' are unlikely to be useful here but
are included for completeness.

The 'FLAGS' argument must include either 'MAP_SHARED' or 'MAP_PRIVATE' (the
latter is unlikely to be useful here). If your platform supports it, you
may also use 'MAP_ANON' or 'MAP_ANONYMOUS'. If your platform supplies
'MAP_FILE' as a non-zero constant (necessarily non-POSIX) then you should
also include that in 'FLAGS'. POSIX.1b does not specify 'MAP_FILE' as a
'FLAG' argument and most if not all versions of Unix have 'MAP_FILE' as
zero.

mmap returns 'undef' on failure, and the address in memory where the
variable was mapped to on success.

* munmap(VARIABLE)

Unmaps the part of your address space which was previously mapped in with a
call to 'mmap(VARIABLE, ...)' and makes VARIABLE become undefined.

munmap returns 1 on success and undef on failure.

* hardwire(VARIABLE, ADDRESS, LENGTH)

Specifies the address in memory of a variable, possibly within a region
you've 'mmap()'ed another variable to. You must use the same precautions to
keep the variable from being reallocated, and use 'substr()' with an exact
length. If you 'munmap()' a region that a 'hardwire()'ed variable lives in,
the 'hardwire()'ed variable will not automatically be 'undef'ed. You must
do this manually.

* Constants

The Sys::Mmap module exports the following constants into your namespace:

    MAP_SHARED MAP_PRIVATE MAP_ANON MAP_ANONYMOUS MAP_FILE
    MAP_NORESERVE MAP_POPULATE
    MAP_HUGETLB MAP_HUGE_2MB MAP_HUGE_1GB
    PROT_EXEC PROT_NONE PROT_READ PROT_WRITE

Of the constants beginning with 'MAP_', only 'MAP_SHARED' and 'MAP_PRIVATE'
are defined in POSIX.1b and only 'MAP_SHARED' is likely to be useful.

Provides

Requires

License

Artistic-1.0 OR GPL-1.0-or-later

Changelog

* Fri Feb 14 2020 <timueller+perl@suse.de>
  - updated to 0.20
    see /usr/share/doc/packages/perl-Sys-Mmap/Changes
    Todd Rinaldo, Feb 13 2020 v0.20
    * Add use warnings to improve kwalitee
    * Spelling error in manpage
    * Add MAP_POPULATE support, which has been available since Linux Kernel 2.5
* Fri Mar 03 2017 coolo@suse.com
  - updated to 0.19
    see /usr/share/doc/packages/perl-Sys-Mmap/Changes
    Scott Walters, Mar 1 2017 v0.19
    * Update the FSF's mailing address in their license;
      thanks to knnniggett
      This also gets the CPAN and github versions in sync
    Scott Walters, Mar 1 2017 v0.18
    * MAP_HUGETLB MAP_HUGE_2MB MAP_HUGE_1GB, MAP_NORESERVE
      thanks to CowboyTim
* Sat Feb 25 2017 coolo@suse.com
  - updated to 0.18
    see /usr/share/doc/packages/perl-Sys-Mmap/Changes
* Tue Apr 14 2015 coolo@suse.com
  - updated to 0.17
    see /usr/share/doc/packages/perl-Sys-Mmap/Changes
    Todd Rinaldo August 23 2014 v0.17
    * No changes - version bump for stable release.
    Todd Rinaldo August 22 2014 v0.17_01
    * Track fixes in github now all issues are cleared from RT
      https://github.com/toddr/Sys-Mmap/issues
    * Turn off homepage in META since there really isn't one.
    * Minor fix to COW patch related to XS spacing.
    Scott Walters, August 21 2014, v0.17_01
    * RT 91483 - croak("variable is not a string") was hitting because it was being
      too selective with SV type for modern perls.
    * RT 96043 - Updates to fix perl 5.20 COW issues
    * RT 96043 - Add MAP_LOCKED flag
    * Update contributors docs.
* Sun Sep 04 2011 pascal.bleser@opensuse.org
  - initial version (0.16)

Files

/usr/lib/perl5/vendor_perl/5.40.0/armv7l-linux-thread-multi-64int/Sys
/usr/lib/perl5/vendor_perl/5.40.0/armv7l-linux-thread-multi-64int/Sys/Mmap.pm
/usr/lib/perl5/vendor_perl/5.40.0/armv7l-linux-thread-multi-64int/auto/Sys
/usr/lib/perl5/vendor_perl/5.40.0/armv7l-linux-thread-multi-64int/auto/Sys/Mmap
/usr/lib/perl5/vendor_perl/5.40.0/armv7l-linux-thread-multi-64int/auto/Sys/Mmap/Mmap.so
/usr/share/doc/packages/perl-Sys-Mmap
/usr/share/doc/packages/perl-Sys-Mmap/Changes
/usr/share/doc/packages/perl-Sys-Mmap/README
/usr/share/licenses/perl-Sys-Mmap
/usr/share/licenses/perl-Sys-Mmap/Artistic
/usr/share/licenses/perl-Sys-Mmap/Copying
/usr/share/man/man3/Sys::Mmap.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Oct 3 00:41:33 2024