mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
hurd: Define ELIBEXEC
So we can implement it in the exec server.
This commit is contained in:
parent
67ab66541d
commit
45a8e05785
@ -749,6 +749,11 @@ particular function will always fail with @code{ENOSYS} unless you
|
||||
install a new version of the C library or the operating system.
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr Macro int ELIBEXEC
|
||||
@standards{GNU, errno.h}
|
||||
@errno{ELIBEXEC, 83, Cannot exec a shared library directly}
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr Macro int ENOTSUP
|
||||
@standards{POSIX.1, errno.h}
|
||||
@errno{ENOTSUP, 118, Not supported}
|
||||
@ -1059,11 +1064,6 @@ They are not yet documented.}
|
||||
@errno{ELIBMAX, ???/82, Attempting to link in too many shared libraries}
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr Macro int ELIBEXEC
|
||||
@standards{Linux???, errno.h}
|
||||
@errno{ELIBEXEC, ???/83, Cannot exec a shared library directly}
|
||||
@end deftypevr
|
||||
|
||||
@deftypevr Macro int ESTRPIPE
|
||||
@standards{Linux???, errno.h}
|
||||
@errno{ESTRPIPE, ???/86, Streams pipe error}
|
||||
|
@ -115,6 +115,7 @@ enum __error_t_codes
|
||||
EAUTH = 0x40000050, /* Authentication error */
|
||||
ENEEDAUTH = 0x40000051, /* Need authenticator */
|
||||
ENOSYS = 0x4000004e, /* Function not implemented */
|
||||
ELIBEXEC = 0x40000053, /* Cannot exec a shared library directly */
|
||||
ENOTSUP = 0x40000076, /* Not supported */
|
||||
EILSEQ = 0x4000006a, /* Invalid or incomplete multibyte or wide character */
|
||||
EBACKGROUND = 0x40000064, /* Inappropriate operation for background process */
|
||||
@ -312,6 +313,7 @@ enum __error_t_codes
|
||||
#define EAUTH 0x40000050
|
||||
#define ENEEDAUTH 0x40000051
|
||||
#define ENOSYS 0x4000004e
|
||||
#define ELIBEXEC 0x40000053
|
||||
#define ENOTSUP 0x40000076
|
||||
#define EILSEQ 0x4000006a
|
||||
#define EBACKGROUND 0x40000064
|
||||
|
Loading…
Reference in New Issue
Block a user