Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump modification date for last update. | simon | 2006-12-28 | 1 | -1/+1 |
| | |||||
* | Catch up struct cmsghdr and struct msghdr in the manual page with the | simon | 2006-12-28 | 1 | -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. | pjd | 2006-12-15 | 1 | -0/+4 |
| | |||||
* | - truncate(2) returns EFBIG if the length argument was greater than the | pjd | 2006-12-13 | 1 | -1/+9 |
| | | | | | maximum file size. - truncate(2) returns EINVAL if the length argument was less than 0. | ||||
* | Append-only flag also denies chown(2). | pjd | 2006-12-13 | 1 | -1/+1 |
| | |||||
* | Much more correct EFTYPE description. | pjd | 2006-12-13 | 1 | -1/+3 |
| | |||||
* | Better wording. | pjd | 2006-12-13 | 2 | -2/+2 |
| | |||||
* | Append-only flag also denies chmod(2). Is this correct behaviour? | pjd | 2006-12-13 | 1 | -1/+1 |
| | |||||
* | Be more precise with EPERM description. When chown(2) is a no-op, it will | pjd | 2006-12-13 | 1 | -1/+2 |
| | | | | return 0. | ||||
* | Write permission if of course only needed for the parent directory of | pjd | 2006-12-13 | 2 | -8/+4 |
| | | | | | | the object beeing created. Pointed out by: bde | ||||
* | mkfifo(2) returns EACCES when write permission is denied for a component of | pjd | 2006-12-13 | 1 | -0/+2 |
| | | | | the path prefix. | ||||
* | Be more specific when ELOOP can be returned. | pjd | 2006-12-12 | 1 | -1/+3 |
| | |||||
* | symlink(2) return EACCES if a component of the name2 path prefix denies | pjd | 2006-12-12 | 1 | -0/+4 |
| | | | | write permission. | ||||
* | Correct ENOENT description. | pjd | 2006-12-12 | 1 | -2/+4 |
| | |||||
* | The 'name1' argument to symlink(2) is only limited to 1023 characters, | pjd | 2006-12-12 | 1 | -1/+3 |
| | | | | its components are not checked. | ||||
* | mkdir(2) creates directory, not file. | pjd | 2006-12-12 | 1 | -1/+2 |
| | |||||
* | Remove reference to confusing behaviour just removed from | julian | 2006-12-12 | 1 | -6/+3 |
| | | | | the kse_exit() syscall. Describe the correct behaviour. | ||||
* | When directory is given as an argument for unlink(2), EPERM is returned | pjd | 2006-12-10 | 1 | -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) | pjd | 2006-12-09 | 1 | -1/+6 |
| | | | | returns EPERM. | ||||
* | If the parent directory of the named file has its immutable flag set, | pjd | 2006-12-09 | 1 | -1/+6 |
| | | | | mkfifo(2) returns EPERM. | ||||
* | If the parent directory of the destination file has its immutable flag set, | pjd | 2006-12-09 | 1 | -1/+8 |
| | | | | symlink(2) returns EPERM. | ||||
* | - If the source file has its immutable or append-only flag set, link(2) | pjd | 2006-12-09 | 1 | -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) | pjd | 2006-12-09 | 1 | -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. | pjd | 2006-12-09 | 1 | -1/+6 |
| | |||||
* | If the named file has its immutable flag set, chmod(2) returns EPERM. | pjd | 2006-12-09 | 1 | -1/+6 |
| | |||||
* | Add reference to chflags(2). | pjd | 2006-12-09 | 1 | -0/+1 |
| | |||||
* | If the parent directory of the named file has its immutable flag set, | pjd | 2006-12-09 | 1 | -1/+5 |
| | | | | mkdir(2) returns EPERM. | ||||
* | - If the directory to be removed has its immutable, undeletable or append-only | pjd | 2006-12-09 | 1 | -1/+9 |
| | | | | | | flag set, rmdir(2) returns EPERM. - If the parent directory of the directory to be removed has its immutable or append-only flag set, rmdir(2) returns EPERM. | ||||
* | - If the parent directory of the file pointed at by the from argument has its | pjd | 2006-12-09 | 1 | -0/+8 |
| | | | | | | immutable or append-only flag set, rename(2) returns EPERM. - If the parent directory of the file pointed at by the to argument has its immutable flag set, rename(2) returns EPERM. | ||||
* | Correct last commit. The parent directory of the file to be removed can | pjd | 2006-12-09 | 1 | -3/+5 |
| | | | | have undeletable flag set. | ||||
* | When immutable, undeletable or append-only flag is set, rename(2) | pjd | 2006-12-09 | 1 | -1/+8 |
| | | | | return EPERM. | ||||
* | When undeletable flag is set, unlink(2) return EPERM. | pjd | 2006-12-09 | 1 | -1/+1 |
| | |||||
* | Grammar. | ru | 2006-12-04 | 1 | -1/+1 |
| | | | | OK'ed by: sam | ||||
* | document recent change to return ECONNRESET for tcp sockets | sam | 2006-12-04 | 1 | -1/+4 |
| | | | | MFC after: 1 month | ||||
* | Note that, thanks to the work by Alan Cox et al, some arch'es | yar | 2006-11-24 | 1 | -2/+19 |
| | | | | | | | | | don't need sendfile() buffers any more. The report on the work referenced can be found at http://usenix.org/events/usenix05/tech/general/elmeleegy.html MFC after: 1 week | ||||
* | Document that the data field for NOTE_EXIT holds the process exit status. | jhb | 2006-11-20 | 1 | -0/+2 |
| | | | | | Submitted by: Jared Yanovich -phirerunner at comcast.net- MFC after: 2 weeks | ||||
* | Add an entry for PT_GETLWPLIST. | trhodes | 2006-11-09 | 1 | -1/+3 |
| | | | | | Nudged by: jhb Reviewed by: davidxu | ||||
* | Remove sys/uio.h include -- this is no longer required by the extattr | rwatson | 2006-11-06 | 1 | -1/+0 |
| | | | | | | system call API. MFC after: 3 weeks | ||||
* | - clock_gettime is in time.h instead of sys/time.h | danger | 2006-11-04 | 1 | -3/+3 |
| | | | | | | Approved by: trhodes (mentor), keramida (mentor) PR: docs/104707 MFC-after: 3 days | ||||
* | Replace the SEE ALSO xrefs with a more reasonable set stolen from POSIX. | ru | 2006-11-02 | 1 | -2/+7 |
| | |||||
* | Document MNT_GJOURNAL option. | pjd | 2006-11-01 | 1 | -1/+4 |
| | |||||
* | Minor markup fix: A comma should be seperated by space from macro | simon | 2006-10-21 | 1 | -1/+1 |
| | | | | | | | argument. This resulted in "pwritev,()" instead of the intended "pwritev()," in the output. MFC after: 3 days | ||||
* | Avoid a potential hard sentence break. | ru | 2006-10-21 | 1 | -1/+1 |
| | |||||
* | Use normal parentheses. | ru | 2006-10-12 | 1 | -5/+5 |
| | | | | | | PR: docs/84549 Submitted by: Gary W. Swearingen MFC after: 3 days | ||||
* | Link select(2) to FD_CLR(3), FD_ISSET(3), FD_SET(3), and FD_ZERO(3). | ru | 2006-10-12 | 1 | -0/+2 |
| | | | | | PR: docs/57974 MFC after: 3 days | ||||
* | Document S_IRWXU and permission bits for group/other. | ru | 2006-10-12 | 1 | -2/+11 |
| | | | | | PR: docs/57153 MFC after: 3 days | ||||
* | o Follow the trend and try to explain what the slow device is. | maxim | 2006-10-11 | 1 | -3/+5 |
| | | | | | | Not ideal but better than nothing. Obtained from: OpenBSD, NetBSD | ||||
* | Reword previous delta a little bit. | trhodes | 2006-10-07 | 1 | -14/+8 |
| | | | | Submitted by: ru | ||||
* | Fix ambiguity in description. Note that the aio_return() system call should | trhodes | 2006-10-07 | 1 | -5/+9 |
| | | | | | | | only be called once after failure or completion of an AIO request. Bump doc date while I'm here. Noticed by: Samy Al Bahra | ||||
* | Add missing word "returns." | trhodes | 2006-10-07 | 1 | -1/+1 |
| | | | | Noticed by: Samy Al Bahra |