Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1091 - 1100 of 1,306 for label:perl (0.02 sec)

  1. getpriority.txt

    =over =item getpriority WHICH,WHO X<getpriority> X<priority> X<nice> Returns the current priority for a process, a process group, or a user. (See L<getpriority(2)>.) Will raise a fatal exception if...
    perldoc.perl.org/functions/getpriority.txt
    Registered: Fri Apr 18 23:36:39 UTC 2025
    - 426 bytes
    - Viewed (0)
  2. 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: Sat Apr 19 01:08:50 UTC 2025
    - 372 bytes
    - Viewed (0)
  3. 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: Sat Apr 19 03:26:25 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. 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: Sat Apr 19 02:50:58 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. lock.txt

    =over =item lock THING X<lock> This function places an advisory lock on a shared variable or referenced object contained in I<THING> until the lock goes out of scope. The value returned is the scal...
    perldoc.perl.org/functions/lock.txt
    Registered: Sat Apr 19 03:23:56 UTC 2025
    - 565 bytes
    - Viewed (0)
  6. msgsnd.txt

    =over =item msgsnd ID,MSG,FLAGS X<msgsnd> Calls the System V IPC function msgsnd to send the message MSG to the message queue ID. MSG must begin with the native long integer message type, followed ...
    perldoc.perl.org/functions/msgsnd.txt
    Registered: Sat Apr 19 03:35:10 UTC 2025
    - 506 bytes
    - Viewed (0)
  7. tied.txt

    =over =item tied VARIABLE X<tied> Returns a reference to the object underlying VARIABLE (the same value that was originally returned by the L<C<tie>|/tie VARIABLE,CLASSNAME,LIST> call that bound th...
    perldoc.perl.org/functions/tied.txt
    Registered: Sat Apr 19 07:45:25 UTC 2025
    - 297 bytes
    - Viewed (0)
  8. shutdown.txt

    =over =item shutdown SOCKET,HOW X<shutdown> Shuts down a socket connection in the manner indicated by HOW, which has the same interpretation as in the syscall of the same name. shutdown($socket, 0)...
    perldoc.perl.org/functions/shutdown.txt
    Registered: Sat Apr 19 09:44:55 UTC 2025
    - 813 bytes
    - Viewed (0)
  9. readpipe.txt

    =over =item readpipe EXPR =item readpipe X<readpipe> EXPR is executed as a system command. The collected standard output of the command is returned. In scalar context, it comes back as a single (po...
    perldoc.perl.org/functions/readpipe.txt
    Registered: Sat Apr 19 08:10:42 UTC 2025
    - 622 bytes
    - Viewed (0)
  10. setsockopt.txt

    =over =item setsockopt SOCKET,LEVEL,OPTNAME,OPTVAL X<setsockopt> Sets the socket option requested. Returns L<C<undef>|/undef EXPR> on error. Use integer constants provided by the L<C<Socket>|Socket...
    perldoc.perl.org/functions/setsockopt.txt
    Registered: Sat Apr 19 10:37:36 UTC 2025
    - 604 bytes
    - Viewed (0)
Back to top