diff options
author | Roland McGrath <roland@gnu.org> | 2004-10-20 10:05:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-10-20 10:05:07 +0000 |
commit | cb57664d297d1669be7887d2e17a1a2128d39af6 (patch) | |
tree | 678ec620c42cceeb9699573659b452be392f1a45 /manual | |
parent | 4b359a27dd5c9d76e507db782a8e907e20c1df95 (diff) | |
download | glibc-cb57664d297d1669be7887d2e17a1a2128d39af6.tar.gz |
* manual/errno.texi (Error Codes): Add ENOKEY, EKEYEXPIRED,cvs/fedora-glibc-20041020T1016
EKEYREVOKED, EKEYREJECTED.
* sysdeps/unix/sysv/linux/Versions (libc: GLIBC_2.3.4): New errlist.
* sysdeps/gnu/errlist.c: Regenerated
* sysdeps/gnu/errlist-compat.awk: Don't bail if Versions gives a count
higher than ERR_MAX reports. Instead, emit a #define ERR_MAX.
* sysdeps/gnu/Makefile ($(objpfx)errlist-compat.h): New target.
(generated): Add errlist-compat.h.
* sysdeps/gnu/errlist.awk: Make output #include <errlist-compat.h> to
define ERR_MAX and use that for table size.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/errno.texi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/manual/errno.texi b/manual/errno.texi index c799d268f8..7872452df3 100644 --- a/manual/errno.texi +++ b/manual/errno.texi @@ -1229,6 +1229,30 @@ They are not yet documented.} @comment errno ???/??? @end deftypevr +@comment errno.h +@comment Linux???: Required key not available +@deftypevr Macro int ENOKEY +@comment errno ???/??? +@end deftypevr + +@comment errno.h +@comment Linux???: Key has expired +@deftypevr Macro int EKEYEXPIRED +@comment errno ???/??? +@end deftypevr + +@comment errno.h +@comment Linux???: Key has been revoked +@deftypevr Macro int EKEYREVOKED +@comment errno ???/??? +@end deftypevr + +@comment errno.h +@comment Linux???: Key was rejected by service +@deftypevr Macro int EKEYREJECTED +@comment errno ???/??? +@end deftypevr + @node Error Messages, , Error Codes, Error Reporting @section Error Messages |