summaryrefslogtreecommitdiff
path: root/ext/sysvmsg/php_sysvmsg.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2018-09-17 17:49:09 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-09-17 17:49:09 +0200
commit819ae353a79ee79e20fe93e4fd53e96097c9f89f (patch)
treec2d2034f6e9e9a99ef6e6a452e5777e4e41af9be /ext/sysvmsg/php_sysvmsg.h
parent44fa6be16eca2eb3addc73f96c7a7e38f9d2fef2 (diff)
downloadphp-git-819ae353a79ee79e20fe93e4fd53e96097c9f89f.tar.gz
Don't export anything in php_sysvmsg.h
These are all only relevant for the implementation.
Diffstat (limited to 'ext/sysvmsg/php_sysvmsg.h')
-rw-r--r--ext/sysvmsg/php_sysvmsg.h34
1 files changed, 0 insertions, 34 deletions
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 <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 */