diff options
| author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-11 10:46:53 +0000 |
|---|---|---|
| committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-11 10:46:53 +0000 |
| commit | 8716039decfd1aec15a888d4f4a4c35ba8d49cb1 (patch) | |
| tree | dbe9ffd76360c768113ebd1556248356f20ae384 | |
| parent | 83905d9fec5cb38a8aaa15907c6d1f2dc529c6a0 (diff) | |
| download | php-git-8716039decfd1aec15a888d4f4a4c35ba8d49cb1.tar.gz | |
protos fixed
| -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) { |
