diff options
author | Rickard Green <[email protected]> | 2013-05-22 18:27:07 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2013-06-04 00:15:44 +0200 |
commit | 15bcffe9f317ddefde69fcc89d31a9309341b917 (patch) | |
tree | 7980120517f107fa7365eb241a1981e246ee3f18 /erts/emulator/beam/erl_alloc_util.h | |
parent | 5f44cc8e4d1e7ce6cd978653f45d86f2504413cc (diff) | |
download | otp-15bcffe9f317ddefde69fcc89d31a9309341b917.tar.gz otp-15bcffe9f317ddefde69fcc89d31a9309341b917.tar.bz2 otp-15bcffe9f317ddefde69fcc89d31a9309341b917.zip |
erts: Use Uint64 for call counts
Diffstat (limited to 'erts/emulator/beam/erl_alloc_util.h')
-rw-r--r-- | erts/emulator/beam/erl_alloc_util.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/erts/emulator/beam/erl_alloc_util.h b/erts/emulator/beam/erl_alloc_util.h index 8a29ee601d..772dd5024f 100644 --- a/erts/emulator/beam/erl_alloc_util.h +++ b/erts/emulator/beam/erl_alloc_util.h @@ -305,10 +305,7 @@ typedef struct { typedef UWord FreeBlkFtr_t; /* Footer of a free block */ -typedef struct { - UWord giga_no; - UWord no; -} CallCounter_t; +typedef Uint64 CallCounter_t; typedef struct { UWord no; |