Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1201 - 1210 of 1,302 for label:perl (0.03 sec)

  1. shmctl.txt

    =over =item shmctl ID,CMD,ARG X<shmctl> Calls the System V IPC function shmctl. You'll probably have to say use IPC::SysV; first to get the correct constant definitions. If CMD is C<IPC_STAT>, then...
    perldoc.perl.org/functions/shmctl.txt
    Registered: Thu Nov 21 09:32:34 UTC 2024
    - 534 bytes
    - Viewed (0)
  2. break.txt

    =over =item break Break out of a C<given> block. L<C<break>|/break> is available only if the L<C<"switch"> feature|feature/The 'switch' feature> is enabled or if it is prefixed with C<CORE::>. The ...
    perldoc.perl.org/functions/break.txt
    Registered: Thu Nov 21 06:19:16 UTC 2024
    - 349 bytes
    - Viewed (0)
  3. __PACKAGE__.txt

    =over =item __PACKAGE__ X<__PACKAGE__> A special token that returns the name of the package in which it occurs. =back 120
    perldoc.perl.org/functions/__PACKAGE__.txt
    Registered: Thu Nov 21 08:56:28 UTC 2024
    - 120 bytes
    - Viewed (0)
  4. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS L<C<our>|/our VARLIST> makes a lexical alias to a package (i.e. global) vari...
    perldoc.perl.org/functions/our.txt
    Registered: Thu Nov 21 14:23:15 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. fork.txt

    =over =item fork X<fork> X<child> X<parent> Does a L<fork(2)> system call to create a new process running the same program at the same point. It returns the child pid to the parent process, C<0> to...
    perldoc.perl.org/functions/fork.txt
    Registered: Thu Nov 21 13:37:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. return.txt

    =over =item return EXPR X<return> =item return Returns from a subroutine, L<C<eval>|/eval EXPR>, L<C<do FILE>|/do EXPR>, L<C<sort>|/sort SUBNAME LIST> block or regex eval block (but not a L<C<grep>...
    perldoc.perl.org/functions/return.txt
    Registered: Thu Nov 21 13:04:47 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. msgrcv.txt

    =over =item msgrcv ID,VAR,SIZE,TYPE,FLAGS X<msgrcv> Calls the System V IPC function msgrcv to receive a message from message queue ID into variable VAR with a maximum message size of SIZE. Note tha...
    perldoc.perl.org/functions/msgrcv.txt
    Registered: Thu Nov 21 10:26:51 UTC 2024
    - 615 bytes
    - Viewed (0)
  8. times.txt

    =over =item times X<times> Returns a four-element list giving the user and system times in seconds for this process and any exited children of this process. my ($user,$system,$cuser,$csystem) = tim...
    perldoc.perl.org/functions/times.txt
    Registered: Thu Nov 21 11:56:09 UTC 2024
    - 372 bytes
    - Viewed (0)
  9. connect.txt

    =over =item connect SOCKET,NAME X<connect> Attempts to connect to a remote socket, just like L<connect(2)>. Returns true if it succeeded, false otherwise. NAME should be a packed address of the app...
    perldoc.perl.org/functions/connect.txt
    Registered: Thu Nov 21 10:05:34 UTC 2024
    - 308 bytes
    - Viewed (0)
  10. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The L<C<exec>|/exec LIST> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of L<C<exec...
    perldoc.perl.org/functions/exec.txt
    Registered: Thu Nov 21 17:42:54 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top