From 474401c51db884e66e5196731f180c5e90f3ff9e Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sun, 1 Jan 2012 23:54:58 +0000 Subject: [PATCH] - OPS: Update error code translation table html/inc result.inc svn path=/trunk/boinc/; revision=24964 --- checkin_notes | 3 +++ html/inc/result.inc | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index a4ce7da945..ae80a995cf 100644 --- a/checkin_notes +++ b/checkin_notes @@ -11,6 +11,9 @@ David 1 Jan 2012 Rom 1 Jan 2012 - OPS: Update failure_result_summary_by_platform.php to include plan class information. + - OPS: Update error code translation table + html/inc + result.inc html/ops failure_result_summary_by_platform.php diff --git a/html/inc/result.inc b/html/inc/result.inc index ca39270654..30cae97df7 100644 --- a/html/inc/result.inc +++ b/html/inc/result.inc @@ -433,8 +433,12 @@ function version_string($version_num) { function result_error_mask_str($x){ switch($x){ case 0: return ""; - case -100: return "ERR_SELECT"; - case -102: return "ERR_READ"; + case 192: return "EXIT_STATEFILE_WRITE"; + case 193: return "EXIT_SIGNAL"; + case 194: return "EXIT_ABORTED_BY_CLIENT"; + case 195: return "EXIT_CHILD_FAILED"; + case -100: return "ERR_SELECT"; + case -102: return "ERR_READ"; case -103: return "ERR_WRITE"; case -104: return "ERR_FREAD"; case -105: return "ERR_FWRITE";