cvs commit: src/lib/libc/sys open.2

2007-01-07 Thread Pawel Jakub Dawidek
pjd 2007-01-07 23:06:53 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: Be more specific in ENXIO description: - O_NONBLOCK flag has to be set, if it is not set, open(2) will wait for another process opening the fifo for reading, - Use O_WR

cvs commit: src/lib/libc/sys open.2

2007-01-07 Thread Pawel Jakub Dawidek
pjd 2007-01-07 23:01:32 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: open(2) returns EROFS when O_CREAT is specified and the named file would reside on a read-only file system. Revision ChangesPath 1.36 +3 -0 src/lib/libc

cvs commit: src/lib/libc/sys open.2

2007-01-07 Thread Pawel Jakub Dawidek
pjd 2007-01-07 17:55:19 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: - POSIX mentions that EACCES can be returned when O_TRUNC is specified separately. Do the same. - Document when EPERM can be returned. Revision ChangesPath 1.

cvs commit: src/lib/libc/sys open.2

2007-01-07 Thread Pawel Jakub Dawidek
pjd 2007-01-07 17:32:16 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: Prefer "to be modified" over "to be opened for writing". This is quite tricky situation, because we allow to open a file with O_RDONLY|O_TRUNC. O_TRUNC modifies a file, but

cvs commit: src/lib/libc/sys open.2 stat.2 statfs.2

2006-01-10 Thread Greg Lehey
grog2006-01-10 23:24:48 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 stat.2 statfs.2 Log: Add references to fhopen, fhstat, getfh, lgetfh and fhstatfs. Pointed out by: Antony Curtis <[EMAIL PROTECTED]> Revision ChangesPath 1.32

cvs commit: src/lib/libc/sys open.2

2005-12-01 Thread Warner Losh
imp 2005-12-01 18:17:50 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: Tweak markup for POSIX standards. Minor wordsmithing. Submitted by: ru@ Revision ChangesPath 1.31 +7 -3 src/lib/libc/sys/open.2

cvs commit: src/lib/libc/sys open.2

2005-12-01 Thread Warner Losh
imp 2005-12-01 17:54:33 UTC FreeBSD src repository Modified files: lib/libc/sys open.2 Log: Document O_NOCTTY and O_SYNC. O_NOCTTY is a nop on freebsd, while on other systems it prevents a tty from becoming a controlling tty on the open. O_SYNC is the POSIX name