tb running cmds in interactive mode
This commit is contained in:
@ -14,6 +14,8 @@ enum {
|
||||
E_DOSCHEDULING = -9,
|
||||
E_INVALIDARGUMENT = -10,
|
||||
E_INVALIDOPER = -11,
|
||||
E_RESOURCEAVAIL = -12,
|
||||
E_SPAWNERROR = -13,
|
||||
};
|
||||
|
||||
static const char *_ERROR_STRINGS[] = {
|
||||
@ -29,6 +31,8 @@ static const char *_ERROR_STRINGS[] = {
|
||||
"Perform scheduling (internal flag)",
|
||||
"Invalid argument",
|
||||
"Invalid operation",
|
||||
"Resource already available",
|
||||
"Process spawn error",
|
||||
};
|
||||
|
||||
#define ERRSTRING_INDEX(ioh) ((size_t)((ioh) < 0 ? (ioh) * (-1) : (ioh)))
|
||||
|
Reference in New Issue
Block a user