Added EMFILE.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-12 01:37:50 +01:00
parent 44e2537d7b
commit 6de3c462be
2 changed files with 2 additions and 0 deletions

View File

@ -31,5 +31,6 @@
#define EPIPE 39
#define EILSEQ 40
#define ELAKE 41
#define EMFILE 42
#endif

View File

@ -79,6 +79,7 @@ namespace Maxsi
case EPIPE: return (char*) "Broken pipe";
case EILSEQ: return (char*) "Illegal byte sequence";
case ELAKE: return (char*) "Sit by a lake";
case EMFILE: return (char*) "Too many open files";
default: return (char*) "Unknown error condition";
}
}