php_posix.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Kristian Koehntopp <kris@koehntopp.de> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_POSIX_H
  20. #define PHP_POSIX_H
  21. #ifdef HAVE_CONFIG_H
  22. #include "config.h"
  23. #endif
  24. #if HAVE_POSIX
  25. #ifndef DLEXPORT
  26. #define DLEXPORT
  27. #endif
  28. extern zend_module_entry posix_module_entry;
  29. #define posix_module_ptr &posix_module_entry
  30. /* POSIX.1, 3.3 */
  31. PHP_FUNCTION(posix_kill);
  32. /* POSIX.1, 4.1 */
  33. PHP_FUNCTION(posix_getpid);
  34. PHP_FUNCTION(posix_getppid);
  35. /* POSIX.1, 4.2 */
  36. PHP_FUNCTION(posix_getuid);
  37. PHP_FUNCTION(posix_getgid);
  38. PHP_FUNCTION(posix_geteuid);
  39. PHP_FUNCTION(posix_getegid);
  40. PHP_FUNCTION(posix_setuid);
  41. PHP_FUNCTION(posix_setgid);
  42. #ifdef HAVE_SETEUID
  43. PHP_FUNCTION(posix_seteuid);
  44. #endif
  45. #ifdef HAVE_SETEGID
  46. PHP_FUNCTION(posix_setegid);
  47. #endif
  48. #ifdef HAVE_GETGROUPS
  49. PHP_FUNCTION(posix_getgroups);
  50. #endif
  51. #ifdef HAVE_GETLOGIN
  52. PHP_FUNCTION(posix_getlogin);
  53. #endif
  54. /* POSIX.1, 4.3 */
  55. PHP_FUNCTION(posix_getpgrp);
  56. #ifdef HAVE_SETSID
  57. PHP_FUNCTION(posix_setsid);
  58. #endif
  59. PHP_FUNCTION(posix_setpgid);
  60. /* Non-Posix functions which are common */
  61. #ifdef HAVE_GETPGID
  62. PHP_FUNCTION(posix_getpgid);
  63. #endif
  64. #ifdef HAVE_GETSID
  65. PHP_FUNCTION(posix_getsid);
  66. #endif
  67. /* POSIX.1, 4.4 */
  68. PHP_FUNCTION(posix_uname);
  69. PHP_FUNCTION(posix_times);
  70. /* POSIX.1, 4.5 */
  71. #ifdef HAVE_CTERMID
  72. PHP_FUNCTION(posix_ctermid);
  73. #endif
  74. PHP_FUNCTION(posix_ttyname);
  75. PHP_FUNCTION(posix_isatty);
  76. /* POSIX.1, 5.2 */
  77. PHP_FUNCTION(posix_getcwd);
  78. /* POSIX.1, 5.4 */
  79. #ifdef HAVE_MKFIFO
  80. PHP_FUNCTION(posix_mkfifo);
  81. #endif
  82. #ifdef HAVE_MKNOD
  83. PHP_FUNCTION(posix_mknod);
  84. #endif
  85. /* POSIX.1, 5.6 */
  86. PHP_FUNCTION(posix_access);
  87. /* POSIX.1, 9.2 */
  88. PHP_FUNCTION(posix_getgrnam);
  89. PHP_FUNCTION(posix_getgrgid);
  90. PHP_FUNCTION(posix_getpwnam);
  91. PHP_FUNCTION(posix_getpwuid);
  92. #ifdef HAVE_GETRLIMIT
  93. PHP_FUNCTION(posix_getrlimit);
  94. #endif
  95. #ifdef HAVE_INITGROUPS
  96. PHP_FUNCTION(posix_initgroups);
  97. #endif
  98. PHP_FUNCTION(posix_get_last_error);
  99. PHP_FUNCTION(posix_strerror);
  100. ZEND_BEGIN_MODULE_GLOBALS(posix)
  101. int last_error;
  102. ZEND_END_MODULE_GLOBALS(posix)
  103. #ifdef ZTS
  104. # define POSIX_G(v) TSRMG(posix_globals_id, zend_posix_globals *, v)
  105. #else
  106. # define POSIX_G(v) (posix_globals.v)
  107. #endif
  108. #else
  109. #define posix_module_ptr NULL
  110. #endif
  111. #define phpext_posix_ptr posix_module_ptr
  112. #endif /* PHP_POSIX_H */