]> granicus.if.org Git - php/commitdiff
Review parameter names in ext/sysvsem
authorMáté Kocsis <kocsismate@woohoolabs.com>
Thu, 1 Oct 2020 08:00:43 +0000 (10:00 +0200)
committerMáté Kocsis <kocsismate@woohoolabs.com>
Thu, 1 Oct 2020 21:09:31 +0000 (23:09 +0200)
Closes GH-6248

ext/sysvsem/sysvsem.stub.php
ext/sysvsem/sysvsem_arginfo.h

index 3265984e70f9c988aba2d931f742df39df0b0d93..8da71b09fb781be22fe00819328b0acc8fd8e81a 100644 (file)
@@ -6,9 +6,9 @@ final class SysvSemaphore
 {
 }
 
-function sem_get(int $key, int $max_acquire = 1, int $perm = 0666, bool $auto_release = true): SysvSemaphore|false {}
+function sem_get(int $key, int $max_acquire = 1, int $permissions = 0666, bool $auto_release = true): SysvSemaphore|false {}
 
-function sem_acquire(SysvSemaphore $semaphore, bool $nowait = false): bool {}
+function sem_acquire(SysvSemaphore $semaphore, bool $non_blocking = false): bool {}
 
 function sem_release(SysvSemaphore $semaphore): bool {}
 
index 07ebe6bf545e0f0f00e3e3ffd974e74d1423e341..8d6f0ac4094f5974707c90e293f8a020f1496ae7 100644 (file)
@@ -1,16 +1,16 @@
 /* This is a generated file, edit the .stub.php file instead.
- * Stub hash: d00524488977b77475f9aa78c132a6dd53ab4dd0 */
+ * Stub hash: 745e7cf135c7d1c9ad09d1ea1ab6cf2a8181433a */
 
 ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_sem_get, 0, 1, SysvSemaphore, MAY_BE_FALSE)
        ZEND_ARG_TYPE_INFO(0, key, IS_LONG, 0)
        ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, max_acquire, IS_LONG, 0, "1")
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, perm, IS_LONG, 0, "0666")
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, permissions, IS_LONG, 0, "0666")
        ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, auto_release, _IS_BOOL, 0, "true")
 ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_sem_acquire, 0, 1, _IS_BOOL, 0)
        ZEND_ARG_OBJ_INFO(0, semaphore, SysvSemaphore, 0)
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, nowait, _IS_BOOL, 0, "false")
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, non_blocking, _IS_BOOL, 0, "false")
 ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_sem_release, 0, 1, _IS_BOOL, 0)