aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-processes.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2018-06-28 06:16:41 +0200
committerTristan Gingold <tgingold@free.fr>2018-06-28 06:16:41 +0200
commit657fcfde5fb93c1311fe5fd2d28146c89852614d (patch)
tree8af462440308027eb903d0a912c6c348629cc2a3 /src/grt/grt-processes.ads
parent1013d3e7c2af31ce7cf5720d03e39d9861755fdb (diff)
downloadghdl-657fcfde5fb93c1311fe5fd2d28146c89852614d.tar.gz
ghdl-657fcfde5fb93c1311fe5fd2d28146c89852614d.tar.bz2
ghdl-657fcfde5fb93c1311fe5fd2d28146c89852614d.zip
grt: use 64-bit type for Nbr_Cycles.
Fix #614
Diffstat (limited to 'src/grt/grt-processes.ads')
-rw-r--r--src/grt/grt-processes.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/grt/grt-processes.ads b/src/grt/grt-processes.ads
index 57dac4497..2cd091524 100644
--- a/src/grt/grt-processes.ads
+++ b/src/grt/grt-processes.ads
@@ -57,9 +57,9 @@ package Grt.Processes is
Next_Time : Std_Time;
-- Number of delta cycles.
- Nbr_Delta_Cycles : Integer;
+ Nbr_Delta_Cycles : Ghdl_I64;
-- Number of non-delta cycles.
- Nbr_Cycles : Integer;
+ Nbr_Cycles : Ghdl_I64;
type Process_Type is private;
-- type Process_Acc is access all Process_Type;