Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Add UV_EIO error code
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Apr 12, 2012
1 parent fa21584 commit 6ec330a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/uv.h
Expand Up @@ -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,
Expand Down

0 comments on commit 6ec330a

Please sign in to comment.