aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-errors.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-12-18 19:12:57 +0100
committerTristan Gingold <tgingold@free.fr>2017-12-20 20:58:40 +0100
commit6bc6e9b69843f897bf43002c8da58e513db7b6e3 (patch)
tree894d8ec73c06f977dba69975a3cf472af7b4bb8e /src/grt/grt-errors.ads
parent9db20e133d5c47f8d54710c2676792337cc94f54 (diff)
downloadghdl-6bc6e9b69843f897bf43002c8da58e513db7b6e3.tar.gz
ghdl-6bc6e9b69843f897bf43002c8da58e513db7b6e3.tar.bz2
ghdl-6bc6e9b69843f897bf43002c8da58e513db7b6e3.zip
grt: reorganize simulation loop.
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;