Added EINTR.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-06 13:36:44 +01:00
parent 9f7175fbc8
commit 2722c3f03d
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#define ENOSYS 33
#define ENOTSUP 34
#define EBLOCKING 35
#define EINTR 36
#define ELAKE 41
#endif

View File

@ -73,6 +73,7 @@ namespace Maxsi
case ENOSYS: return (char*) "Function not implemented";
case ENOTSUP: return (char*) "Operation not supported";
case EBLOCKING: return (char*) "Operation is blocking";
case EINTR: return (char*) "Interrupted function call";
case ELAKE: return (char*) "Sit by a lake";
default: return (char*) "Unknown error condition";
}