diff options
Diffstat (limited to 'ext/sysvsem/sysvsem.c')
| -rw-r--r-- | ext/sysvsem/sysvsem.c | 25 | 
1 files changed, 1 insertions, 24 deletions
diff --git a/ext/sysvsem/sysvsem.c b/ext/sysvsem/sysvsem.c index 6086d1f066..ef710eb6be 100644 --- a/ext/sysvsem/sysvsem.c +++ b/ext/sysvsem/sysvsem.c @@ -1,7 +1,5 @@  /*     +----------------------------------------------------------------------+ -   | PHP Version 7                                                        | -   +----------------------------------------------------------------------+     | Copyright (c) The PHP Group                                          |     +----------------------------------------------------------------------+     | This source file is subject to version 3.01 of the PHP license,      | @@ -38,6 +36,7 @@  #include <sys/sem.h>  #include <errno.h> +#include "sysvsem_arginfo.h"  #include "php_sysvsem.h"  #include "ext/standard/info.h" @@ -55,28 +54,6 @@ union semun {  #endif -/* {{{ arginfo */ -ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_get, 0, 0, 1) -	ZEND_ARG_INFO(0, key) -	ZEND_ARG_INFO(0, max_acquire) -	ZEND_ARG_INFO(0, perm) -	ZEND_ARG_INFO(0, auto_release) -ZEND_END_ARG_INFO() - -ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_acquire, 0, 0, 1) -	ZEND_ARG_INFO(0, sem_identifier) -	ZEND_ARG_INFO(0, nowait) -ZEND_END_ARG_INFO() - -ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_release, 0, 0, 1) -	ZEND_ARG_INFO(0, sem_identifier) -ZEND_END_ARG_INFO() - -ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_remove, 0, 0, 1) -	ZEND_ARG_INFO(0, sem_identifier) -ZEND_END_ARG_INFO() -/* }}} */ -  /* {{{ sysvsem_functions[]   */  static const zend_function_entry sysvsem_functions[] = {  | 
