php_shmop.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. | Authors: Slava Poliakov <hackie@prohost.org> |
  16. | Ilia Alshanetsky <ilia@prohost.org> |
  17. +----------------------------------------------------------------------+
  18. */
  19. #ifndef PHP_SHMOP_H
  20. #define PHP_SHMOP_H
  21. #if HAVE_SHMOP
  22. extern zend_module_entry shmop_module_entry;
  23. #define phpext_shmop_ptr &shmop_module_entry
  24. PHP_MINIT_FUNCTION(shmop);
  25. PHP_MINFO_FUNCTION(shmop);
  26. PHP_FUNCTION(shmop_open);
  27. PHP_FUNCTION(shmop_read);
  28. PHP_FUNCTION(shmop_close);
  29. PHP_FUNCTION(shmop_size);
  30. PHP_FUNCTION(shmop_write);
  31. PHP_FUNCTION(shmop_delete);
  32. #ifdef PHP_WIN32
  33. typedef int key_t;
  34. #endif
  35. struct php_shmop
  36. {
  37. int shmid;
  38. key_t key;
  39. int shmflg;
  40. int shmatflg;
  41. char *addr;
  42. int size;
  43. };
  44. typedef struct {
  45. int le_shmop;
  46. } php_shmop_globals;
  47. #ifdef ZTS
  48. #define SHMOPG(v) TSRMG(shmop_globals_id, php_shmop_globals *, v)
  49. #else
  50. #define SHMOPG(v) (shmop_globals.v)
  51. #endif
  52. #else
  53. #define phpext_shmop_ptr NULL
  54. #endif
  55. #endif /* PHP_SHMOP_H */
  56. /*
  57. * Local variables:
  58. * tab-width: 4
  59. * c-basic-offset: 4
  60. * End:
  61. */