diff options
Diffstat (limited to 'ext/sysvmsg/php_sysvmsg.h')
-rw-r--r-- | ext/sysvmsg/php_sysvmsg.h | 45 |
1 files changed, 1 insertions, 44 deletions
diff --git a/ext/sysvmsg/php_sysvmsg.h b/ext/sysvmsg/php_sysvmsg.h index 4a95791d30..af5e1da9ab 100644 --- a/ext/sysvmsg/php_sysvmsg.h +++ b/ext/sysvmsg/php_sysvmsg.h @@ -2,7 +2,7 @@ +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ - | Copyright (c) 1997-2018 The PHP Group | + | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | @@ -27,49 +27,6 @@ extern zend_module_entry sysvmsg_module_entry; #include "php_version.h" #define PHP_SYSVMSG_VERSION PHP_VERSION -#ifndef __USE_GNU -/* we want to use mtype instead of __mtype */ -#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 /* HAVE_SYSVMSG */ #endif /* PHP_SYSVMSG_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * indent-tabs-mode: t - * End: - */ |