y

y/// The transliteration operator. Same as tr///. See Quote-Like Operators in perlop.

Sys::Syslog - Perl interface to the UNIX syslog(3) calls

NAME VERSION SYNOPSIS DESCRIPTION EXPORTS FUNCTIONS THE RULES OF SYS::SYSLOG EXAMPLES CONSTANTSFacilities Levels DIAGNOSTICS HISTORY SEE ALSOOther modules Manual Pages RFCs Articles Event Log AUTHORS & ACKNOWLEDGEMENTS BUGS SUPPORT COPYRIGHT LICENSE NAME Sys::Syslog - Perl interface to the UNIX syslog(3) calls VERSION This is the documentation of version 0.33 SYNOPSIS use Sys::Syslog; # all except setlogsock() use Sys::Syslog qw(:standard :macros); # standard f

Encode::EBCDIC - EBCDIC Encodings

NAME SYNOPSIS ABSTRACT DESCRIPTION SEE ALSO NAME Encode::EBCDIC - EBCDIC Encodings SYNOPSIS use Encode qw/encode decode/; $posix_bc = encode("posix-bc", $utf8); # loads Encode::EBCDIC implicitly $utf8 = decode("", $posix_bc); # ditto ABSTRACT This module implements various EBCDIC-Based encodings. Encodings supported are as follows. Canonical Alias Description -------------------------------------------------------------------- cp37 cp500 cp875 cp1026 cp1047 posix-bc

TAP::Formatter::Session - Abstract base class for harness output delegate

NAME VERSION METHODSClass Methods NAME TAP::Formatter::Session - Abstract base class for harness output delegate VERSION Version 3.35 METHODS Class Methods new my %args = ( formatter => $self, ) my $harness = TAP::Formatter::Console::Session->new( \%args ); The constructor returns a new TAP::Formatter::Console::Session object. formatter parser name show_count header Output test preamble result Called by the harness for each line of TAP it receives. close_test

uc

uc EXPR uc Returns an uppercased version of EXPR. This is the internal function implementing the \U escape in double-quoted strings. It does not attempt to do titlecase mapping on initial letters. See ucfirst for that. If EXPR is omitted, uses $_ . This function behaves the same way under various pragma, such as in a locale, as lc does.

semctl

semctl ID,SEMNUM,CMD,ARG Calls the System V IPC function semctl(2). You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is IPC_STAT or GETALL, then ARG must be a variable that will hold the returned semid_ds structure or semaphore value array. Returns like ioctl: the undefined value for error, "0 but true" for zero, or the actual return value otherwise. The ARG must consist of a vector of native short integers, which may be created with pack("s!",(0

socket

socket SOCKET,DOMAIN,TYPE,PROTOCOL Opens a socket of the specified kind and attaches it to filehandle SOCKET. DOMAIN, TYPE, and PROTOCOL are specified the same as for the syscall of the same name. You should use Socket first to get the proper definitions imported. See the examples in Sockets: Client/Server Communication in perlipc. On systems that support a close-on-exec flag on files, the flag will be set for the newly opened file descriptor, as determined by the value of $^F. See $^F in perlv

getpriority

getpriority WHICH,WHO Returns the current priority for a process, a process group, or a user. (See getpriority(2).) Will raise a fatal exception if used on a machine that doesn't implement getpriority(2). Portability issues: getpriority in perlport.

ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker

NAME SYNOPSIS DESCRIPTION METHODS NAME ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker SYNOPSIS use ExtUtils::MM_OS2; # Done internally by ExtUtils::MakeMaker if needed DESCRIPTION See ExtUtils::MM_Unix for a documentation of the methods provided there. This package overrides the implementation of these methods, not the semantics. METHODS init_dist Define TO_UNIX to convert OS2 linefeeds to Unix style. init_linker os_flavor OS/2 is OS/2

TAP::Formatter::Console::ParallelSession - Harness output delegate for parallel console output

NAME VERSION DESCRIPTION SYNOPSIS METHODSClass Methods NAME TAP::Formatter::Console::ParallelSession - Harness output delegate for parallel console output VERSION Version 3.35 DESCRIPTION This provides console orientated output formatting for TAP::Harness when run with multiple jobs in TAP::Harness. SYNOPSIS METHODS Class Methods header Output test preamble result Called by the harness for each line of TAP it receives . clear_for_close close_test