Added ENOSYS.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-01-14 16:09:30 +01:00
parent 1824dd6867
commit c5ddc6923a
2 changed files with 2 additions and 0 deletions

View File

@ -22,5 +22,6 @@
#define ESRCH 30
#define ENOTTY 31
#define ECHILD 32
#define ENOSYS 33
#endif

View File

@ -70,6 +70,7 @@ namespace Maxsi
case ESRCH: return (char*) "No such process";
case ENOTTY: return (char*) "Not a tty";
case ECHILD: return (char*) "No child processes";
case ENOSYS: return (char*) "Function not implemented";
default: return (char*) "Unknown error condition";
}
}