Module Name: src Committed By: wiz Date: Fri Apr 30 06:51:52 UTC 2010
Modified Files: src/lib/libc/sys: access.2 Log Message: Sort errors. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/lib/libc/sys/access.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libc/sys/access.2 diff -u src/lib/libc/sys/access.2:1.23 src/lib/libc/sys/access.2:1.24 --- src/lib/libc/sys/access.2:1.23 Fri Apr 30 06:34:23 2010 +++ src/lib/libc/sys/access.2 Fri Apr 30 06:51:52 2010 @@ -1,4 +1,4 @@ -.\" $NetBSD: access.2,v 1.23 2010/04/30 06:34:23 jruoho Exp $ +.\" $NetBSD: access.2,v 1.24 2010/04/30 06:51:52 wiz Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -90,38 +90,41 @@ .Sh ERRORS Access to the file is denied if: .Bl -tag -width Er -.It Bq Er ENOTDIR -A component of the path prefix is not a directory. +.It Bq Er EACCES +Permission bits of the file mode do not permit the requested +access, or search permission is denied on a component of the +path prefix. +The owner of a file has permission checked with respect to the +.Dq owner +read, write, and execute mode bits, members of the file's group +other than the owner have permission checked with respect to the +.Dq group +mode bits, and all others have permissions checked with respect to +the +.Dq other +mode bits. +.It Bq Er EFAULT +.Fa path +points outside the process's allocated address space. +.It Bq Er EIO +An I/O error occurred while reading from or writing to the file system. +.It Bq Er ELOOP +Too many symbolic links were encountered in translating the pathname. .It Bq Er ENAMETOOLONG A component of a pathname exceeded -.Dv {NAME_MAX} +.Brq Dv NAME_MAX characters, or an entire path name exceeded -.Dv {PATH_MAX} +.Brq Dv PATH_MAX characters. .It Bq Er ENOENT The named file does not exist. -.It Bq Er ELOOP -Too many symbolic links were encountered in translating the pathname. +.It Bq Er ENOTDIR +A component of the path prefix is not a directory. .It Bq Er EROFS Write access is requested for a file on a read-only file system. .It Bq Er ETXTBSY Write access is requested for a pure procedure (shared text) file presently being executed. -.It Bq Er EACCES -Permission bits of the file mode do not permit the requested -access, or search permission is denied on a component of the -path prefix. -The owner of a file has permission checked with -respect to the ``owner'' read, write, and execute mode bits, -members of the file's group other than the owner have permission -checked with respect to the ``group'' mode bits, and all -others have permissions checked with respect to the ``other'' -mode bits. -.It Bq Er EFAULT -.Fa path -points outside the process's allocated address space. -.It Bq Er EIO -An I/O error occurred while reading from or writing to the file system. .El .Sh SEE ALSO .Xr chmod 2 ,