Make GC::CheckTime 64-bit, just in case.

This commit is contained in:
Marisa Heit 2022-01-10 23:02:02 -06:00 committed by Christoph Oelckers
parent e529f2d4d1
commit a1d0d27278
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ EGCState State = GCS_Pause;
int Pause = DEFAULT_GCPAUSE;
int StepMul = DEFAULT_GCMUL;
int StepCount;
int CheckTime;
uint64_t CheckTime;
bool FinalGC;
// PRIVATE DATA DEFINITIONS ------------------------------------------------

View file

@ -71,7 +71,7 @@ namespace GC
extern bool FinalGC;
// Counts the number of times CheckGC has been called.
extern int CheckTime;
extern uint64_t CheckTime;
// Current white value for known-dead objects.
static inline uint32_t OtherWhite()