123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #ifndef PHP_SYSVMSG_H
- #define PHP_SYSVMSG_H
- #if HAVE_SYSVMSG
- extern zend_module_entry sysvmsg_module_entry;
- #define phpext_sysvmsg_ptr &sysvmsg_module_entry
- #include "php_version.h"
- #define PHP_SYSVMSG_VERSION PHP_VERSION
- #ifndef __USE_GNU
- #define __USE_GNU
- #endif
- #include <sys/types.h>
- #include <sys/ipc.h>
- #include <sys/msg.h>
- #ifdef ZTS
- #include "TSRM.h"
- #endif
- PHP_MINIT_FUNCTION(sysvmsg);
- PHP_MINFO_FUNCTION(sysvmsg);
- PHP_FUNCTION(msg_get_queue);
- PHP_FUNCTION(msg_remove_queue);
- PHP_FUNCTION(msg_stat_queue);
- PHP_FUNCTION(msg_set_queue);
- PHP_FUNCTION(msg_send);
- PHP_FUNCTION(msg_receive);
- PHP_FUNCTION(msg_queue_exists);
- typedef struct {
- key_t key;
- zend_long id;
- } sysvmsg_queue_t;
- struct php_msgbuf {
- zend_long mtype;
- char mtext[1];
- };
- #endif
- #endif
|