diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/shmop/shmop.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/shmop/shmop.c b/ext/shmop/shmop.c index a7085a9987..f40e524c98 100644 --- a/ext/shmop/shmop.c +++ b/ext/shmop/shmop.c @@ -87,8 +87,8 @@ PHP_MINFO_FUNCTION(shmop) php_info_print_table_end(); } -/* {{{ void shm_open (int key, int flags, int mode, int size) - shm_open - gets and attaches an shared memory segment */ +/* {{{ proto int shm_open (int key, int flags, int mode, int size) + shm_open - gets and attaches a shared memory segment */ PHP_FUNCTION(shm_open) { zval **key, **flags, **mode, **size; @@ -154,8 +154,8 @@ PHP_FUNCTION(shm_open) /* }}} */ -/* {{{ string shm_read (int shmid, int start, int count) - shm_read - reads from an shm segment */ +/* {{{ proto string shm_read (int shmid, int start, int count) + shm_read - reads from a shm segment */ PHP_FUNCTION(shm_read) { zval **shmid, **start, **count; @@ -206,7 +206,7 @@ PHP_FUNCTION(shm_read) /* }}} */ -/* {{{ void shm_close (int shmid) +/* {{{ proto void shm_close (int shmid) shm_close - closes a shared memory segment */ PHP_FUNCTION(shm_close) { @@ -231,7 +231,7 @@ PHP_FUNCTION(shm_close) /* }}} */ -/* {{{ int shm_size (int shmid) +/* {{{ proto int shm_size (int shmid) shm_size - returns the shm size */ PHP_FUNCTION(shm_size) { @@ -257,7 +257,7 @@ PHP_FUNCTION(shm_size) /* }}} */ -/* {{{ int shm_write (int shmid, string data, int offset) +/* {{{ proto int shm_write (int shmid, string data, int offset) shm_write - writes to a shared memory segment */ PHP_FUNCTION(shm_write) { @@ -294,7 +294,7 @@ PHP_FUNCTION(shm_write) /* }}} */ -/* {{{ bool shm_delete (int shmid) +/* {{{ proto bool shm_delete (int shmid) shm_delete - mark segment for deletion */ PHP_FUNCTION(shm_delete) { |
