Mail Archives: djgpp-workers/2001/02/11/14:21:05
> From: "Mark E." <snowball3 AT bigfoot DOT com>
> Date: Sun, 11 Feb 2001 13:58:44 -0500
>
> > Didn't a comment disappear from posix/fcntl/fcntl.c with recent(?)
> > changes.
>
> Looks that way. If there are no objections, I'll add two comments to fcntl.c:
Obviously, I don't have any objections, but shouldn't we be able to
actually make those FIXMEs happen, once Martin's changes go in?
>
> Index: fcntl.c
> ===================================================================
> RCS file: /cvs/djgpp/djgpp/src/libc/posix/fcntl/fcntl.c,v
> retrieving revision 1.5
> diff -c -p -r1.5 fcntl.c
> *** fcntl.c 2001/02/01 19:19:24 1.5
> --- fcntl.c 2001/02/11 18:43:51
> *************** fcntl(int fd, int cmd, ...)
> *** 408,419 ****
> --- 408,421 ----
>
> case F_GETFL:
> {
> + /* FIXME: Return O_APPEND and O_ACCMODE flags. */
> return 0;
> }
>
>
> case F_SETFL:
> {
> + /* FIXME: Set O_APPEND and O_ACCMODE flags. */
> unsigned char new_mode_bits;
>
>
>
>
- Raw text -