1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
|
<?php
// Start of posix v.
/**
* Send a signal to a process
* @link http://www.php.net/manual/en/function.posix-kill.php
* @param pid int <p>
* The process identifier.
* </p>
* @param sig int <p>
* One of the PCNTL signals constants.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_kill ($pid, $sig) {}
/**
* Return the current process identifier
* @link http://www.php.net/manual/en/function.posix-getpid.php
* @return int the identifier, as an integer.
*/
function posix_getpid () {}
/**
* Return the parent process identifier
* @link http://www.php.net/manual/en/function.posix-getppid.php
* @return int the identifier, as an integer.
*/
function posix_getppid () {}
/**
* Return the real user ID of the current process
* @link http://www.php.net/manual/en/function.posix-getuid.php
* @return int the user id, as an integer
*/
function posix_getuid () {}
/**
* Set the UID of the current process
* @link http://www.php.net/manual/en/function.posix-setuid.php
* @param uid int <p>
* The user id.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_setuid ($uid) {}
/**
* Return the effective user ID of the current process
* @link http://www.php.net/manual/en/function.posix-geteuid.php
* @return int the user id, as an integer
*/
function posix_geteuid () {}
/**
* Set the effective UID of the current process
* @link http://www.php.net/manual/en/function.posix-seteuid.php
* @param uid int <p>
* The user id.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_seteuid ($uid) {}
/**
* Return the real group ID of the current process
* @link http://www.php.net/manual/en/function.posix-getgid.php
* @return int the real group id, as an integer.
*/
function posix_getgid () {}
/**
* Set the GID of the current process
* @link http://www.php.net/manual/en/function.posix-setgid.php
* @param gid int <p>
* The group id.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_setgid ($gid) {}
/**
* Return the effective group ID of the current process
* @link http://www.php.net/manual/en/function.posix-getegid.php
* @return int an integer of the effective group ID.
*/
function posix_getegid () {}
/**
* Set the effective GID of the current process
* @link http://www.php.net/manual/en/function.posix-setegid.php
* @param gid int <p>
* The group id.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_setegid ($gid) {}
/**
* Return the group set of the current process
* @link http://www.php.net/manual/en/function.posix-getgroups.php
* @return array an array of integers containing the numeric group ids of the group
* set of the current process.
*/
function posix_getgroups () {}
/**
* Return login name
* @link http://www.php.net/manual/en/function.posix-getlogin.php
* @return string the login name of the user, as a string.
*/
function posix_getlogin () {}
/**
* Return the current process group identifier
* @link http://www.php.net/manual/en/function.posix-getpgrp.php
* @return int the identifier, as an integer.
*/
function posix_getpgrp () {}
/**
* Make the current process a session leader
* @link http://www.php.net/manual/en/function.posix-setsid.php
* @return int the session id, or -1 on errors.
*/
function posix_setsid () {}
/**
* Set process group id for job control
* @link http://www.php.net/manual/en/function.posix-setpgid.php
* @param pid int <p>
* The process id.
* </p>
* @param pgid int <p>
* The process group id.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_setpgid ($pid, $pgid) {}
/**
* Get process group id for job control
* @link http://www.php.net/manual/en/function.posix-getpgid.php
* @param pid int <p>
* The process id.
* </p>
* @return int the identifier, as an integer.
*/
function posix_getpgid ($pid) {}
/**
* Get the current sid of the process
* @link http://www.php.net/manual/en/function.posix-getsid.php
* @param pid int <p>
* The process identifier. If set to 0, the current process is
* assumed. If an invalid pid is
* specified, then false is returned and an error is set which
* can be checked with posix_get_last_error.
* </p>
* @return int the identifier, as an integer.
*/
function posix_getsid ($pid) {}
/**
* Get system name
* @link http://www.php.net/manual/en/function.posix-uname.php
* @return array a hash of strings with information about the
* system. The indices of the hash are
*
*
* sysname - operating system name (e.g. Linux)
*
*
* nodename - system name (e.g. valiant)
*
*
* release - operating system release (e.g. 2.2.10)
*
*
* version - operating system version (e.g. #4 Tue Jul 20
* 17:01:36 MEST 1999)
*
*
* machine - system architecture (e.g. i586)
*
*
* domainname - DNS domainname (e.g. example.com)
*
*
* </p>
* <p>
* domainname is a GNU extension and not part of POSIX.1, so this
* field is only available on GNU systems or when using the GNU
* libc.
*/
function posix_uname () {}
/**
* Get process times
* @link http://www.php.net/manual/en/function.posix-times.php
* @return array a hash of strings with information about the current
* process CPU usage. The indices of the hash are:
*
*
*
* ticks - the number of clock ticks that have elapsed since
* reboot.
*
*
*
*
* utime - user time used by the current process.
*
*
*
*
* stime - system time used by the current process.
*
*
*
*
* cutime - user time used by current process and children.
*
*
*
*
* cstime - system time used by current process and children.
*/
function posix_times () {}
/**
* Get path name of controlling terminal
* @link http://www.php.net/manual/en/function.posix-ctermid.php
* @return string Upon successful completion, returns string of the pathname to
* the current controlling terminal. Otherwise false is returned and errno
* is set, which can be checked with posix_get_last_error.
*/
function posix_ctermid () {}
/**
* Determine terminal device name
* @link http://www.php.net/manual/en/function.posix-ttyname.php
* @param fd mixed
* @return string On success, returns a string of the absolute path of the
* fd. On failure, returns false
*/
function posix_ttyname ($fd) {}
/**
* Determine if a file descriptor is an interactive terminal
* @link http://www.php.net/manual/en/function.posix-isatty.php
* @param fd mixed
* @return bool true if fd is an open descriptor connected
* to a terminal and false otherwise.
*/
function posix_isatty ($fd) {}
/**
* Pathname of current directory
* @link http://www.php.net/manual/en/function.posix-getcwd.php
* @return string a string of the absolute pathname on success.
* On error, returns false and sets errno which can be checked with
* posix_get_last_error.
*/
function posix_getcwd () {}
/**
* Create a fifo special file (a named pipe)
* @link http://www.php.net/manual/en/function.posix-mkfifo.php
* @param pathname string <p>
* Path to the FIFO file.
* </p>
* @param mode int <p>
* The second parameter mode has to be given in
* octal notation (e.g. 0644). The permission of the newly created
* FIFO also depends on the setting of the current
* umask. The permissions of the created file are
* (mode & ~umask).
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_mkfifo ($pathname, $mode) {}
/**
* Create a special or ordinary file (POSIX.1)
* @link http://www.php.net/manual/en/function.posix-mknod.php
* @param pathname string <p>
* The file to create
* </p>
* @param mode int <p>
* This parameter is constructed by a bitwise OR between file type (one of
* the following constants: POSIX_S_IFREG,
* POSIX_S_IFCHR, POSIX_S_IFBLK,
* POSIX_S_IFIFO or
* POSIX_S_IFSOCK) and permissions.
* </p>
* @param major int[optional] <p>
* The major device kernel identifier (required to pass when using
* S_IFCHR or S_IFBLK).
* </p>
* @param minor int[optional] <p>
* The minor device kernel identifier.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_mknod ($pathname, $mode, $major = null, $minor = null) {}
/**
* Determine accessibility of a file
* @link http://www.php.net/manual/en/function.posix-access.php
* @param file string <p>
* The name of the file to be tested.
* </p>
* @param mode int[optional] <p>
* A mask consisting of one or more of POSIX_F_OK,
* POSIX_R_OK, POSIX_W_OK and
* POSIX_X_OK.
* </p>
* <p>
* POSIX_R_OK, POSIX_W_OK and
* POSIX_X_OK request checking whether the file
* exists and has read, write and execute permissions, respectively.
* POSIX_F_OK just requests checking for the
* existence of the file.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_access ($file, $mode = null) {}
/**
* Return info about a group by name
* @link http://www.php.net/manual/en/function.posix-getgrnam.php
* @param name string <p>The name of the group</p>
* @return array The array elements returned are:
* <table>
* The group information array
*
*
* <tr valign="top">
* <td>Element</td>
* <td>Description</td>
* </tr>
*
*
* <tr valign="top">
* <td>name</td>
* <td>
* The name element contains the name of the group. This is
* a short, usually less than 16 character "handle" of the
* group, not the real, full name. This should be the same as
* the name parameter used when
* calling the function, and hence redundant.
* </td>
* </tr>
* <tr valign="top">
* <td>passwd</td>
* <td>
* The passwd element contains the group's password in an
* encrypted format. Often, for example on a system employing
* "shadow" passwords, an asterisk is returned instead.
* </td>
* </tr>
* <tr valign="top">
* <td>gid</td>
* <td>
* Group ID of the group in numeric form.
* </td>
* </tr>
* <tr valign="top">
* <td>members</td>
* <td>
* This consists of an array of
* string's for all the members in the group.
* </td>
* </tr>
*
*
* </table>
*/
function posix_getgrnam ($name) {}
/**
* Return info about a group by group id
* @link http://www.php.net/manual/en/function.posix-getgrgid.php
* @param gid int <p>
* The group id.
* </p>
* @return array The array elements returned are:
* <table>
* The group information array
*
*
* <tr valign="top">
* <td>Element</td>
* <td>Description</td>
* </tr>
*
*
* <tr valign="top">
* <td>name</td>
* <td>
* The name element contains the name of the group. This is
* a short, usually less than 16 character "handle" of the
* group, not the real, full name.
* </td>
* </tr>
* <tr valign="top">
* <td>passwd</td>
* <td>
* The passwd element contains the group's password in an
* encrypted format. Often, for example on a system employing
* "shadow" passwords, an asterisk is returned instead.
* </td>
* </tr>
* <tr valign="top">
* <td>gid</td>
* <td>
* Group ID, should be the same as the
* gid parameter used when calling the
* function, and hence redundant.
* </td>
* </tr>
* <tr valign="top">
* <td>members</td>
* <td>
* This consists of an array of
* string's for all the members in the group.
* </td>
* </tr>
*
*
* </table>
*/
function posix_getgrgid ($gid) {}
/**
* Return info about a user by username
* @link http://www.php.net/manual/en/function.posix-getpwnam.php
* @param username string <p>
* An alphanumeric username.
* </p>
* @return array On success an array with the following elements is returned, else
* false is returned:
* <table>
* The user information array
*
*
* <tr valign="top">
* <td>Element</td>
* <td>Description</td>
* </tr>
*
*
* <tr valign="top">
* <td>name</td>
* <td>
* The name element contains the username of the user. This is
* a short, usually less than 16 character "handle" of the
* user, not the real, full name. This should be the same as
* the username parameter used when
* calling the function, and hence redundant.
* </td>
* </tr>
* <tr valign="top">
* <td>passwd</td>
* <td>
* The passwd element contains the user's password in an
* encrypted format. Often, for example on a system employing
* "shadow" passwords, an asterisk is returned instead.
* </td>
* </tr>
* <tr valign="top">
* <td>uid</td>
* <td>
* User ID of the user in numeric form.
* </td>
* </tr>
* <tr valign="top">
* <td>gid</td>
* <td>
* The group ID of the user. Use the function
* posix_getgrgid to resolve the group
* name and a list of its members.
* </td>
* </tr>
* <tr valign="top">
* <td>gecos</td>
* <td>
* GECOS is an obsolete term that refers to the finger
* information field on a Honeywell batch processing system.
* The field, however, lives on, and its contents have been
* formalized by POSIX. The field contains a comma separated
* list containing the user's full name, office phone, office
* number, and home phone number. On most systems, only the
* user's full name is available.
* </td>
* </tr>
* <tr valign="top">
* <td>dir</td>
* <td>
* This element contains the absolute path to the home
* directory of the user.
* </td>
* </tr>
* <tr valign="top">
* <td>shell</td>
* <td>
* The shell element contains the absolute path to the
* executable of the user's default shell.
* </td>
* </tr>
*
*
* </table>
*/
function posix_getpwnam ($username) {}
/**
* Return info about a user by user id
* @link http://www.php.net/manual/en/function.posix-getpwuid.php
* @param uid int <p>
* The user identifier.
* </p>
* @return array an associative array with the following elements:
* <table>
* The user information array
*
*
* <tr valign="top">
* <td>Element</td>
* <td>Description</td>
* </tr>
*
*
* <tr valign="top">
* <td>name</td>
* <td>
* The name element contains the username of the user. This is
* a short, usually less than 16 character "handle" of the
* user, not the real, full name.
* </td>
* </tr>
* <tr valign="top">
* <td>passwd</td>
* <td>
* The passwd element contains the user's password in an
* encrypted format. Often, for example on a system employing
* "shadow" passwords, an asterisk is returned instead.
* </td>
* </tr>
* <tr valign="top">
* <td>uid</td>
* <td>
* User ID, should be the same as the
* uid parameter used when calling the
* function, and hence redundant.
* </td>
* </tr>
* <tr valign="top">
* <td>gid</td>
* <td>
* The group ID of the user. Use the function
* posix_getgrgid to resolve the group
* name and a list of its members.
* </td>
* </tr>
* <tr valign="top">
* <td>gecos</td>
* <td>
* GECOS is an obsolete term that refers to the finger
* information field on a Honeywell batch processing system.
* The field, however, lives on, and its contents have been
* formalized by POSIX. The field contains a comma separated
* list containing the user's full name, office phone, office
* number, and home phone number. On most systems, only the
* user's full name is available.
* </td>
* </tr>
* <tr valign="top">
* <td>dir</td>
* <td>
* This element contains the absolute path to the
* home directory of the user.
* </td>
* </tr>
* <tr valign="top">
* <td>shell</td>
* <td>
* The shell element contains the absolute path to the
* executable of the user's default shell.
* </td>
* </tr>
*
*
* </table>
*/
function posix_getpwuid ($uid) {}
/**
* Return info about system resource limits
* @link http://www.php.net/manual/en/function.posix-getrlimit.php
* @return array an associative array of elements for each
* limit that is defined. Each limit has a soft and a hard limit.
* <table>
* List of possible limits returned
*
*
* <tr valign="top">
* <td>Limit name</td>
* <td>Limit description</td>
* </tr>
*
*
* <tr valign="top">
* <td>core</td>
* <td>
* The maximum size of the core file. When 0, not core files are
* created. When core files are larger than this size, they will
* be truncated at this size.
* </td>
* </tr>
* <tr valign="top">
* <td>totalmem</td>
* <td>
* The maximum size of the memory of the process, in bytes.
* </td>
* </tr>
* <tr valign="top">
* <td>virtualmem</td>
* <td>
* The maximum size of the virtual memory for the process, in bytes.
* </td>
* </tr>
* <tr valign="top">
* <td>data</td>
* <td>
* The maximum size of the data segment for the process, in bytes.
* </td>
* </tr>
* <tr valign="top">
* <td>stack</td>
* <td>
* The maximum size of the process stack, in bytes.
* </td>
* </tr>
* <tr valign="top">
* <td>rss</td>
* <td>
* The maximum number of virtual pages resident in RAM
* </td>
* </tr>
* <tr valign="top">
* <td>maxproc</td>
* <td>
* The maximum number of processes that can be created for the
* real user ID of the calling process.
* </td>
* </tr>
* <tr valign="top">
* <td>memlock</td>
* <td>
* The maximum number of bytes of memory that may be locked into RAM.
* </td>
* </tr>
* <tr valign="top">
* <td>cpu</td>
* <td>
* The amount of time the process is allowed to use the CPU.
* </td>
* </tr>
* <tr valign="top">
* <td>filesize</td>
* <td>
* The maximum size of the data segment for the process, in bytes.
* </td>
* </tr>
* <tr valign="top">
* <td>openfiles</td>
* <td>
* One more than the maximum number of open file descriptors.
* </td>
* </tr>
*
*
* </table>
*/
function posix_getrlimit () {}
/**
* Retrieve the error number set by the last posix function that failed
* @link http://www.php.net/manual/en/function.posix-get-last-error.php
* @return int the errno (error number) set by the last posix function that
* failed. If no errors exist, 0 is returned.
*/
function posix_get_last_error () {}
/**
* &Alias; <function>posix_get_last_error</function>
* @link http://www.php.net/manual/en/function.posix-errno.php
*/
function posix_errno () {}
/**
* Retrieve the system error message associated with the given errno
* @link http://www.php.net/manual/en/function.posix-strerror.php
* @param errno int <p>
* A POSIX error number, returned by
* posix_get_last_error. If set to 0, then the
* string "Success" is returned.
* </p>
* @return string the error message, as a string.
*/
function posix_strerror ($errno) {}
/**
* Calculate the group access list
* @link http://www.php.net/manual/en/function.posix-initgroups.php
* @param name string <p>
* The user to calculate the list for.
* </p>
* @param base_group_id int <p>
* Typically the group number from the password file.
* </p>
* @return bool Returns true on success, false on failure.
*/
function posix_initgroups ($name, $base_group_id) {}
/**
* Check whether the file exists.
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_F_OK', 0);
/**
* Check whether the file exists and has execute permissions.
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_X_OK', 1);
/**
* Check whether the file exists and has write permissions.
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_W_OK', 2);
/**
* Check whether the file exists and has read permissions.
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_R_OK', 4);
/**
* Normal file
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_S_IFREG', 32768);
/**
* Character special file
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_S_IFCHR', 8192);
/**
* Block special file
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_S_IFBLK', 24576);
/**
* FIFO (named pipe) special file
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_S_IFIFO', 4096);
/**
* Socket
* @link http://www.php.net/manual/en/posix.constants.php
*/
define ('POSIX_S_IFSOCK', 49152);
// End of posix v.
?>
|