diff options
author | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2000-02-24 14:43:53 +0000 |
commit | c07b5282af83c8bb3c1fe770c6f35cd64cfcb474 (patch) | |
tree | f99f230b908e1451e9c64c91b960976ee3c918b9 /ext/sysvsem | |
parent | 2b9b11d3af416c3619cc7527bf192c5f6df46124 (diff) | |
download | php-git-c07b5282af83c8bb3c1fe770c6f35cd64cfcb474.tar.gz |
More protos.
Diffstat (limited to 'ext/sysvsem')
-rw-r--r-- | ext/sysvsem/sysvsem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sysvsem/sysvsem.c b/ext/sysvsem/sysvsem.c index 9e3378ecf4..20618b5be1 100644 --- a/ext/sysvsem/sysvsem.c +++ b/ext/sysvsem/sysvsem.c @@ -128,7 +128,7 @@ PHP_MINIT_FUNCTION(sysvsem) #endif /* {{{ proto int sem_get(int key [, int max_acquire [, int perm]]) - Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously. */ + Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously */ PHP_FUNCTION(sem_get) { pval **arg_key, **arg_max_acquire, **arg_perm; @@ -329,7 +329,7 @@ static void php_sysvsem_semop(INTERNAL_FUNCTION_PARAMETERS, int acquire) /* {{{ proto int sem_acquire(int id) - Acquires the semaphore with the given id, blocking if necessary. */ + Acquires the semaphore with the given id, blocking if necessary */ PHP_FUNCTION(sem_acquire) { php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1); @@ -337,7 +337,7 @@ PHP_FUNCTION(sem_acquire) /* }}} */ /* {{{ proto int sem_release(int id) - Releases the semaphore with the given id. */ + Releases the semaphore with the given id */ PHP_FUNCTION(sem_release) { php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); |