davey Thu May 29 20:36:55 2003 EDT
Modified files:
/phpdoc/en/reference/shmop/functions shmop-open.xml
Log:
fixed some whitespace issues
Index: phpdoc/en/reference/shmop/functions/shmop-open.xml
diff -u phpdoc/en/reference/shmop/functions/shmop-open.xml:1.3
phpdoc/en/reference/shmop/functions/shmop-open.xml:1.4
--- phpdoc/en/reference/shmop/functions/shmop-open.xml:1.3 Thu May 29 19:22:51
2003
+++ phpdoc/en/reference/shmop/functions/shmop-open.xml Thu May 29 20:36:55 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/shmop.xml, last change in rev 1.12 -->
<refentry id="function.shmop-open">
<refnamediv>
@@ -26,29 +26,32 @@
<listitem>
<simpara>
"a" for access (sets SHM_RDONLY for shmat)
- use this flag when you need to open an existing shared memory segment for
read only
+ use this flag when you need to open an existing shared memory
+ segment for read only
</simpara>
</listitem>
<listitem>
<simpara>
"c" for create (sets IPC_CREATE)
- use this flag when you need to create a new shared memory segment or if a
- segment with the same key exists, try to open it for read and write
+ use this flag when you need to create a new shared memory segment
+ or if a segment with the same key exists, try to open it for read
+ and write
</simpara>
</listitem>
<listitem>
<simpara>
"w" for read & write access
- use this flag when you need to read and write to a shared memory segment, use
this flag
- in most cases.
+ use this flag when you need to read and write to a shared memory
+ segment, use this flag in most cases.
</simpara>
</listitem>
<listitem>
<simpara>
"n" create a new memory segment (sets IPC_CREATE|IPC_EXCL)
- use this flag when you want to create a new shared memory segment but if one
- already exists with the same flag, fail. This is useful for security purposes,
using this you
- can prevent race condition exploits.
+ use this flag when you want to create a new shared memory segment
+ but if one already exists with the same flag, fail. This is useful
+ for security purposes, using this you can prevent race condition
+ exploits.
</simpara>
</listitem>
</itemizedlist>
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php