Skip to content
Snippets Groups Projects
Commit eed75e22 authored by Dennis Waldron's avatar Dennis Waldron Committed by Steven Murray
Browse files

Added new error codes for jobManager

parent 8036b595
Branches
Tags
No related merge requests found
......@@ -267,6 +267,9 @@ char *sys_sterrlist[ESTMAXERR-ESTBASEOFF+2] =
"Required tape segments are not all accessible",
"File replication failed",
"File is currently not available",
"Job killed by service administrator",
"Job timed out while waiting to be scheduled",
"Scheduler error",
"BAD ERROR NUMBER"
};
......
......@@ -274,7 +274,10 @@
#define ESTSEGNOACC ESTBASEOFF+16 /* Required tape segments are not all accessible */
#define ESTREPLFAILED ESTBASEOFF+17 /* File replication failed */
#define ESTNOTAVAIL ESTBASEOFF+18 /* File is currently not available */
#define ESTMAXERR ESTBASEOFF+18
#define ESTJOBKILLED ESTBASEOFF+19 /* Job killed by service administrator */
#define ESTJOBTIMEDOUT ESTBASEOFF+20 /* Job timed out while waiting to be scheduled */
#define ESTSCHEDERR ESTBASEOFF+21 /* Scheduler error */
#define ESTMAXERR ESTBASEOFF+21
/*
*------------------------------------------------------------------------
......
......@@ -554,6 +554,15 @@ The following error values are returned only by the stager package:
.TP
.B ESTNOTAVAIL
(1718) File is currently not available
.TP
.B ESTJOBKILLED
(1719) Job killed by service administrator
.TP
.B ESTJOBTIMEDOUT
(1720) Job timed out while waiting to be scheduled
.TP
.B ESTSCHEDERR
(1721) Scheduler error
.SH SYSREQ ERRORS
The following error value is returned only by the sysreq package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment