aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-errors.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/grt/grt-errors.ads')
-rw-r--r--src/grt/grt-errors.ads4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/grt/grt-errors.ads b/src/grt/grt-errors.ads
index ceaef6a8e..e050eefd3 100644
--- a/src/grt/grt-errors.ads
+++ b/src/grt/grt-errors.ads
@@ -127,8 +127,10 @@ package Grt.Errors is
Run_Resumed : constant Integer := 2;
-- Simulation is finished.
Run_Finished : constant Integer := 3;
+ -- Simulation finished because of a user-defined time or delta limit.
+ Run_Limit : constant Integer := 4;
-- Stop/finish request from user (via std.env).
- Run_Stop : constant Integer := 4;
+ Run_Stop : constant Integer := 5;
-- Hook called in case of error.
Error_Hook : Grt.Hooks.Proc_Hook_Type := null;