1
0
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:
Saúl Ibarra Corretgé 2014-02-14 16:32:09 +01:00
parent c8e4db6e00
commit 107be2bed3
2 changed files with 7 additions and 0 deletions

View File

@ -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_ */

View File

@ -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") \