ID: 10530
Updated by: yohgaki
Old Summary: shmop.c: shmop_open() with mode "a" is miscoded
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Semaphore related
Operating System: Linux 2.4.4-pre5
PHP Version: 4.0.4pl1
New Comment:

Fixed in CVS.
Please submit bug if you find any problem.


Previous Comments:
------------------------------------------------------------------------

[2001-04-27 16:26:57] [EMAIL PROTECTED]

file: php4/ext/shmop/shmop.c

The documentation states two modes for shmop_open(). "a" and "c". While
"c" is usefull for creation (and access), "a" is programmed incorrect
and misdocumented (for access and other uses).

Currently "a" is inserting the IPC_EXCL flag for (system) shmget(). This
is completly useless, as IPC_EXCL is only operative when IPC_CREAT is
set (which isn't).
Further "a" inserts SHM_RDONLY for (system) shmat(). This makes an
read-only attach instead of a read-write, which does not need any
flags.

Proposal:
To let the "a" do what it is intended for remove line 117 and 118 from
shmop.c.

Furthermore the documentation could be more precise: "a" does never
create a shm segment, while "c" maybe creates one.

Other usefull changes to the code in this respect would brake the
interface (as it is _used_ now...).

Bye,
        Robert

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=10530&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to