summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys
Commit message (Collapse)AuthorAgeFilesLines
* Wordsmithery.bms2007-03-091-1/+1
| | | | Pointed out by: ru
* Document SO_ACCEPTCONN.bms2007-03-081-1/+9
| | | | | Submitted by: Vlad GALU (with changes) MFC after: 3 days
* Fix license. Clause 4 is still required (UCB materiel).bms2007-03-071-6/+5
| | | | | Submitted by: rwatson Pointy hat to: bms
* use 2-clause BSD license as per hoskins strike-off july 22 1999.bms2007-03-071-4/+6
| | | | use wording of FreeBSD License.
* Apply my patch properly.ru2007-03-051-1/+1
|
* Fix markup.bms2007-03-051-22/+36
| | | | | Submitted by: ru MFC after: 2 days
* .Xr nit.bms2007-03-051-2/+2
| | | | Submitted by: brueffer
* Update shutdown() manual page to reflect actual behaviour of code.bms2007-03-051-10/+82
| | | | | | | | Add IMPLEMENTATION NOTES section explaining in detail the effect this system call has in common use cases involving PF_INET and PF_INET6 sockets. PR: kern/84761 MFC after: 2 days
* Fix include declaration it was sys/sctp.h should be netinet/sctp.h,rrs2007-02-263-3/+3
| | | | reported by pluknet@gmail.com.
* First cut of the sctp man pages. Still need work.rrs2007-02-224-0/+247
|
* Fix mis-reference of incorrect manual page in ERRORS section.trhodes2007-02-171-1/+1
| | | | Noticed by: Harlan Stenn <stenn@ntp.isc.org>
* New sentence -> new line. While here, fix apostrophe abuse.brueffer2007-02-141-4/+7
|
* Change the date.julian2007-02-131-1/+1
|
* Make the kse man page reflect the removal of the KSEGRP kernel abstraction.julian2007-02-131-54/+30
|
* Docment the acceptable values for the id parameter.mpp2007-02-011-1/+16
|
* When we try to set set-gid bit with chmod(2) on a file, which we own, but ourpjd2007-01-161-1/+5
| | | | | | effective group ID (and any of our group) doesn't match the group ID of the file, we get EPERM. This doesn't conform POSIX. POSIX requires that we should return 0, but silently clear the set-gid bit.
* Remove 3rd clause, renumber, ok per emailimp2007-01-121-4/+1
|
* o Document SO_TIMESTAMP and SO_BINSTAMP socket options.maxim2007-01-111-2/+46
| | | | | | | | PR: docs/107696 Submitted by: Rob Robertson Reviewed by: ru Obtained from: NetBSD (mostly) MFC after: 1 week
* Per Regents of the University of Calfornia letter, remove advertisingimp2007-01-09112-448/+0
| | | | | | clause. # If I've done so improperly on a file, please let me know.
* Be more specific in ENXIO description:pjd2007-01-071-3/+4
| | | | | | - 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_WRONLY which implies that the file has to be opened _only_ for write.
* open(2) returns EROFS when O_CREAT is specified and the named file wouldpjd2007-01-071-0/+3
| | | | reside on a read-only file system.
* - POSIX mentions that EACCES can be returned when O_TRUNC is specifiedpjd2007-01-071-1/+18
| | | | | separately. Do the same. - Document when EPERM can be returned.
* Prefer "to be modified" over "to be opened for writing".pjd2007-01-071-1/+1
| | | | | | | | | | This is quite tricky situation, because we allow to open a file with O_RDONLY|O_TRUNC. O_TRUNC modifies a file, but we actually don't open it for writing. EISDIR is also returned when we try to open a directory O_RDONLY|O_TRUNC, which is correct. POSIX says that "The result of using O_TRUNC with O_RDONLY is undefined.", we choose to accept it (Solaris did the same), that's why "to be modified" seems more accurate to me.
* Bump modification date for last update.simon2006-12-281-1/+1
|
* Catch up struct cmsghdr and struct msghdr in the manual page with thesimon2006-12-281-11/+11
| | | | | | actual structures in socket.h (which were updated 7 years ago). MFC after: 1 week
* chflags(2) returns EPERM when user tries to set or remove the SF_SNAPSHOT flag.pjd2006-12-151-0/+4
|
* - truncate(2) returns EFBIG if the length argument was greater than thepjd2006-12-131-1/+9
| | | | | maximum file size. - truncate(2) returns EINVAL if the length argument was less than 0.
* Append-only flag also denies chown(2).pjd2006-12-131-1/+1
|
* Much more correct EFTYPE description.pjd2006-12-131-1/+3
|
* Better wording.pjd2006-12-132-2/+2
|
* Append-only flag also denies chmod(2). Is this correct behaviour?pjd2006-12-131-1/+1
|
* Be more precise with EPERM description. When chown(2) is a no-op, it willpjd2006-12-131-1/+2
| | | | return 0.
* Write permission if of course only needed for the parent directory ofpjd2006-12-132-8/+4
| | | | | | the object beeing created. Pointed out by: bde
* mkfifo(2) returns EACCES when write permission is denied for a component ofpjd2006-12-131-0/+2
| | | | the path prefix.
* Be more specific when ELOOP can be returned.pjd2006-12-121-1/+3
|
* symlink(2) return EACCES if a component of the name2 path prefix deniespjd2006-12-121-0/+4
| | | | write permission.
* Correct ENOENT description.pjd2006-12-121-2/+4
|
* The 'name1' argument to symlink(2) is only limited to 1023 characters,pjd2006-12-121-1/+3
| | | | its components are not checked.
* mkdir(2) creates directory, not file.pjd2006-12-121-1/+2
|
* Remove reference to confusing behaviour just removed fromjulian2006-12-121-6/+3
| | | | the kse_exit() syscall. Describe the correct behaviour.
* When directory is given as an argument for unlink(2), EPERM is returnedpjd2006-12-101-4/+1
| | | | not matter if this is regular directory or a mount point.
* If the named file has its immutable or append-only flag set, utimes(2)pjd2006-12-091-1/+6
| | | | returns EPERM.
* If the parent directory of the named file has its immutable flag set,pjd2006-12-091-1/+6
| | | | mkfifo(2) returns EPERM.
* If the parent directory of the destination file has its immutable flag set,pjd2006-12-091-1/+8
| | | | symlink(2) returns EPERM.
* - If the source file has its immutable or append-only flag set, link(2)pjd2006-12-091-4/+13
| | | | | | returns EPERM. - If the parent directory of the destination file has its immutable flag set, link(2) returns EPERM.
* If the named file has its immutable or append-only flag set, truncate(2)pjd2006-12-091-1/+6
| | | | | | | and ftruncate(2) return EPERM. Note, that if the append-only flag is set even increasing size of the file is not permitted.
* If the named file has its immutable flag set, chown(2) returns EPERM.pjd2006-12-091-1/+6
|
* If the named file has its immutable flag set, chmod(2) returns EPERM.pjd2006-12-091-1/+6
|
* Add reference to chflags(2).pjd2006-12-091-0/+1
|
* If the parent directory of the named file has its immutable flag set,pjd2006-12-091-1/+5
| | | | mkdir(2) returns EPERM.
OpenPOWER on IntegriCloud