tb running cmds in interactive mode

This commit is contained in:
2025-09-18 00:57:24 +02:00
parent b3894f1600
commit e5e707eb54
6 changed files with 23 additions and 8 deletions

View File

@ -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)))