Add UV_EIO error code

This commit is contained in:
Bert Belder 2012-04-12 03:15:51 +02:00
parent fa21584878
commit 6ec330a6c3

View File

@ -122,7 +122,8 @@ typedef intptr_t ssize_t;
XX( 51, ELOOP, "too many symbolic links encountered") \
XX( 52, EXDEV, "cross-device link not permitted") \
XX( 53, ENOTEMPTY, "directory not empty") \
XX( 54, ENOSPC, "no space left on device")
XX( 54, ENOSPC, "no space left on device") \
XX( 55, EIO, "i/o error")
#define UV_ERRNO_GEN(val, name, s) UV_##name = val,