php_sysvsem.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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: Tom May <tom@go2net.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef PHP_SYSVSEM_H
  20. #define PHP_SYSVSEM_H
  21. #if HAVE_SYSVSEM
  22. extern zend_module_entry sysvsem_module_entry;
  23. #define sysvsem_module_ptr &sysvsem_module_entry
  24. PHP_MINIT_FUNCTION(sysvsem);
  25. PHP_FUNCTION(sem_get);
  26. PHP_FUNCTION(sem_acquire);
  27. PHP_FUNCTION(sem_release);
  28. PHP_FUNCTION(sem_remove);
  29. typedef struct {
  30. int le_sem;
  31. } sysvsem_module;
  32. typedef struct {
  33. int id; /* For error reporting. */
  34. int key; /* For error reporting. */
  35. int semid; /* Returned by semget(). */
  36. int count; /* Acquire count for auto-release. */
  37. int auto_release; /* flag that says to auto-release. */
  38. } sysvsem_sem;
  39. extern sysvsem_module php_sysvsem_module;
  40. #else
  41. #define sysvsem_module_ptr NULL
  42. #endif
  43. #define phpext_sysvsem_ptr sysvsem_module_ptr
  44. #endif /* PHP_SYSVSEM_H */