Add EOVERFLOW error condition
This commit is contained in:
parent
3404e8e4e5
commit
ca0bed1400
@ -78,6 +78,7 @@ extern int errno; /* place where the error numbers go */
|
|||||||
#define EIDRM (_SIGN 43) /* Identifier removed */
|
#define EIDRM (_SIGN 43) /* Identifier removed */
|
||||||
#define EILSEQ (_SIGN 44) /* illegal byte sequence */
|
#define EILSEQ (_SIGN 44) /* illegal byte sequence */
|
||||||
#define EFTYPE (_SIGN 45) /* wrong file format or type */
|
#define EFTYPE (_SIGN 45) /* wrong file format or type */
|
||||||
|
#define EOVERFLOW (_SIGN 46) /* value too large to store in data type */
|
||||||
|
|
||||||
/* The following errors relate to networking. */
|
/* The following errors relate to networking. */
|
||||||
#define EPACKSIZE (_SIGN 50) /* invalid packet size for some protocol */
|
#define EPACKSIZE (_SIGN 50) /* invalid packet size for some protocol */
|
||||||
|
@ -53,7 +53,7 @@ const char *_sys_errlist[] = {
|
|||||||
"Identifier removed", /* EIDRM */
|
"Identifier removed", /* EIDRM */
|
||||||
"Illegal byte sequence", /* EILSEQ */
|
"Illegal byte sequence", /* EILSEQ */
|
||||||
"Wrong file format or type", /* EFTYPE */
|
"Wrong file format or type", /* EFTYPE */
|
||||||
unknown, /* 46 */
|
"Value too large to be stored in data type", /* EOVERFLOW */
|
||||||
unknown, /* 47 */
|
unknown, /* 47 */
|
||||||
unknown, /* 48 */
|
unknown, /* 48 */
|
||||||
unknown, /* 49 */
|
unknown, /* 49 */
|
||||||
|
@ -259,6 +259,9 @@ An IPC identifier was removed while the current process was waiting on it.
|
|||||||
A wide character/multibyte character encoding error occurred.
|
A wide character/multibyte character encoding error occurred.
|
||||||
.It Er 45 EFTYPE Em "Inappropriate file type or format" .
|
.It Er 45 EFTYPE Em "Inappropriate file type or format" .
|
||||||
Attempted a file operation on a file of a type for which it was invalid.
|
Attempted a file operation on a file of a type for which it was invalid.
|
||||||
|
.It Er 46 EOVERFLOW Em "Value too large to be stored in data type" .
|
||||||
|
A numerical result of the function was too large to be stored in the
|
||||||
|
caller-provided space.
|
||||||
.It Er 50 EPACKSIZE Em "Invalid packet size" .
|
.It Er 50 EPACKSIZE Em "Invalid packet size" .
|
||||||
.It Er 51 ENOBUFS Em "\&No buffer space available" .
|
.It Er 51 ENOBUFS Em "\&No buffer space available" .
|
||||||
An operation on a socket or pipe was not performed because
|
An operation on a socket or pipe was not performed because
|
||||||
|
Loading…
x
Reference in New Issue
Block a user