From: Nikita Popov Date: Mon, 17 Sep 2018 15:49:09 +0000 (+0200) Subject: Don't export anything in php_sysvmsg.h X-Git-Tag: php-7.4.0alpha1~1894 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=819ae353a79ee79e20fe93e4fd53e96097c9f89f;p=php Don't export anything in php_sysvmsg.h These are all only relevant for the implementation. --- diff --git a/ext/sysvmsg/php_sysvmsg.h b/ext/sysvmsg/php_sysvmsg.h index 4a95791d30..c37659fc9c 100644 --- a/ext/sysvmsg/php_sysvmsg.h +++ b/ext/sysvmsg/php_sysvmsg.h @@ -27,40 +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 -#include -#include - -#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 */ diff --git a/ext/sysvmsg/sysvmsg.c b/ext/sysvmsg/sysvmsg.c index 6384ace349..416d5c4594 100644 --- a/ext/sysvmsg/sysvmsg.c +++ b/ext/sysvmsg/sysvmsg.c @@ -27,6 +27,36 @@ #include "ext/standard/php_var.h" #include "zend_smart_str.h" +#ifndef __USE_GNU +/* we want to use mtype instead of __mtype */ +#define __USE_GNU +#endif + +#include +#include +#include + +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]; +}; + /* In order to detect MSG_EXCEPT use at run time; we have no way * of knowing what the bit definitions are, so we can't just define * out own MSG_EXCEPT value. */