summaryrefslogtreecommitdiff
path: root/ext/sysvshm
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2003-07-19 19:23:34 +0000
committerAndrey Hristov <andrey@php.net>2003-07-19 19:23:34 +0000
commit5fcc682ebc5968fa4cbdf04ce143f801cd059fdd (patch)
tree831ed1cfbaa474ed388e6c646629e9288d34d65b /ext/sysvshm
parent71990112b77fe911ce743892758f5aef932eef84 (diff)
downloadphp-git-5fcc682ebc5968fa4cbdf04ce143f801cd059fdd.tar.gz
proto fixes
Diffstat (limited to 'ext/sysvshm')
-rw-r--r--ext/sysvshm/sysvshm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/sysvshm/sysvshm.c b/ext/sysvshm/sysvshm.c
index 05ed9f243d..9ff88c56ae 100644
--- a/ext/sysvshm/sysvshm.c
+++ b/ext/sysvshm/sysvshm.c
@@ -174,7 +174,7 @@ PHP_FUNCTION(shm_attach)
}
/* }}} */
-/* {{{ proto int shm_detach(int shm_identifier)
+/* {{{ proto bool shm_detach(int shm_identifier)
Disconnects from shared memory segment */
PHP_FUNCTION(shm_detach)
{
@@ -192,7 +192,7 @@ PHP_FUNCTION(shm_detach)
}
/* }}} */
-/* {{{ proto int shm_remove(int shm_identifier)
+/* {{{ proto bool shm_remove(int shm_identifier)
Removes shared memory from Unix systems */
PHP_FUNCTION(shm_remove)
{
@@ -223,7 +223,7 @@ PHP_FUNCTION(shm_remove)
}
/* }}} */
-/* {{{ proto int shm_put_var(int shm_identifier, int variable_key, mixed variable)
+/* {{{ proto bool shm_put_var(int shm_identifier, int variable_key, mixed variable)
Inserts or updates a variable in shared memory */
PHP_FUNCTION(shm_put_var)
{
@@ -318,7 +318,7 @@ PHP_FUNCTION(shm_get_var)
}
/* }}} */
-/* {{{ proto int shm_remove_var(int id, int variable_key)
+/* {{{ proto bool shm_remove_var(int id, int variable_key)
Removes variable from shared memory */
PHP_FUNCTION(shm_remove_var)
{