php_sysvshm.h 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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: Christian Cartus <cartus@atrior.de> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_SYSVSHM_H
  19. #define PHP_SYSVSHM_H
  20. #if HAVE_SYSVSHM
  21. extern zend_module_entry sysvshm_module_entry;
  22. #define sysvshm_module_ptr &sysvshm_module_entry
  23. #include "php_version.h"
  24. #define PHP_SYSVSHM_VERSION PHP_VERSION
  25. #include <sys/types.h>
  26. #ifdef PHP_WIN32
  27. # include <TSRM/tsrm_win32.h>
  28. # include "win32/ipc.h"
  29. # ifndef THREAD_LS
  30. # define THREAD_LS
  31. # endif
  32. #else
  33. # include <sys/ipc.h>
  34. # include <sys/shm.h>
  35. #endif
  36. #define PHP_SHM_RSRC_NAME "sysvshm"
  37. typedef struct {
  38. int le_shm;
  39. zend_long init_mem;
  40. } sysvshm_module;
  41. typedef struct {
  42. zend_long key;
  43. zend_long length;
  44. zend_long next;
  45. char mem;
  46. } sysvshm_chunk;
  47. typedef struct {
  48. char magic[8];
  49. zend_long start;
  50. zend_long end;
  51. zend_long free;
  52. zend_long total;
  53. } sysvshm_chunk_head;
  54. typedef struct {
  55. key_t key; /* key set by user */
  56. zend_long id; /* returned by shmget */
  57. sysvshm_chunk_head *ptr; /* memory address of shared memory */
  58. } sysvshm_shm;
  59. PHP_MINIT_FUNCTION(sysvshm);
  60. PHP_MINFO_FUNCTION(sysvshm);
  61. PHP_FUNCTION(shm_attach);
  62. PHP_FUNCTION(shm_detach);
  63. PHP_FUNCTION(shm_remove);
  64. PHP_FUNCTION(shm_put_var);
  65. PHP_FUNCTION(shm_get_var);
  66. PHP_FUNCTION(shm_has_var);
  67. PHP_FUNCTION(shm_remove_var);
  68. extern sysvshm_module php_sysvshm;
  69. #else
  70. #define sysvshm_module_ptr NULL
  71. #endif
  72. #define phpext_sysvshm_ptr sysvshm_module_ptr
  73. #endif /* PHP_SYSVSHM_H */