mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
unix, windows: map EFBIG errno
This commit is contained in:
parent
c8e4db6e00
commit
107be2bed3
@ -370,4 +370,10 @@
|
||||
# define UV__EXDEV (-4037)
|
||||
#endif
|
||||
|
||||
#if defined(EFBIG) && !defined(_WIN32)
|
||||
# define UV__EFBIG (-EFBIG)
|
||||
#else
|
||||
# define UV__EFBIG (-4036)
|
||||
#endif
|
||||
|
||||
#endif /* UV_ERRNO_H_ */
|
||||
|
@ -94,6 +94,7 @@ extern "C" {
|
||||
XX(EDESTADDRREQ, "destination address required") \
|
||||
XX(EEXIST, "file already exists") \
|
||||
XX(EFAULT, "bad address in system call argument") \
|
||||
XX(EFBIG, "file too large") \
|
||||
XX(EHOSTUNREACH, "host is unreachable") \
|
||||
XX(EINTR, "interrupted system call") \
|
||||
XX(EINVAL, "invalid argument") \
|
||||
|
Loading…
x
Reference in New Issue
Block a user