Add $ExpressionTimeLimit system variable.

This commit is contained in:
Dianne Skoll
2024-06-02 14:01:17 -04:00
parent fafb30db05
commit a8bfb41a9e
9 changed files with 74 additions and 21 deletions
+3 -1
View File
@@ -124,6 +124,7 @@
#define E_EXPECTING_WEEKDAY 104
#define E_REPEATED_ARG 105
#define E_EXPR_DISABLED 106
#define E_TIME_EXCEEDED 107
#ifdef MK_GLOBALS
#undef EXTERN
@@ -248,7 +249,8 @@ EXTERN char *ErrMsg[]
/* E_DURATION_NO_AT */ "Cannot specify DURATION without specifying AT",
/* E_EXPECTING_WEEKDAY */ "Expecting weekday name",
/* E_REPEATED_ARG */ "Duplicate argument name",
/* E_EXPR_DISABLED */ "Expression evaluation is disabled"
/* E_EXPR_DISABLED */ "Expression evaluation is disabled",
/* E_TIME_EXCEEDED */ "Time limit for expression evaluation exceeded",
}
#endif /* MK_GLOBALS */
;