diff options
author | Sverker Eriksson <[email protected]> | 2013-05-22 11:02:25 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-06-03 14:26:53 +0200 |
commit | 5ce6aba2ede9e06bb1daa250019454ea42dca657 (patch) | |
tree | a64314ba24f8cea36cbb320501067b01bf7ec128 /erts/emulator/beam/erl_alloc_util.h | |
parent | 59ff0ec666601e59e504e05d3333526338f9de9b (diff) | |
download | otp-5ce6aba2ede9e06bb1daa250019454ea42dca657.tar.gz otp-5ce6aba2ede9e06bb1daa250019454ea42dca657.tar.bz2 otp-5ce6aba2ede9e06bb1daa250019454ea42dca657.zip |
erts: Remove unnecessary flag arguments in allocators
A cleanup after SBMBC was removed.
Diffstat (limited to 'erts/emulator/beam/erl_alloc_util.h')
-rw-r--r-- | erts/emulator/beam/erl_alloc_util.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/erts/emulator/beam/erl_alloc_util.h b/erts/emulator/beam/erl_alloc_util.h index 75f6de9936..8a29ee601d 100644 --- a/erts/emulator/beam/erl_alloc_util.h +++ b/erts/emulator/beam/erl_alloc_util.h @@ -451,19 +451,19 @@ struct Allctr_t_ { /* Callback functions (first 4 are mandatory) */ Block_t * (*get_free_block) (Allctr_t *, Uint, - Block_t *, Uint, Uint32); - void (*link_free_block) (Allctr_t *, Block_t *, Uint32); - void (*unlink_free_block) (Allctr_t *, Block_t *, Uint32); + Block_t *, Uint); + void (*link_free_block) (Allctr_t *, Block_t *); + void (*unlink_free_block) (Allctr_t *, Block_t *); Eterm (*info_options) (Allctr_t *, char *, int *, void *, Uint **, Uint *); Uint (*get_next_mbc_size) (Allctr_t *); - void (*creating_mbc) (Allctr_t *, Carrier_t *, Uint32); - void (*destroying_mbc) (Allctr_t *, Carrier_t *, Uint32); + void (*creating_mbc) (Allctr_t *, Carrier_t *); + void (*destroying_mbc) (Allctr_t *, Carrier_t *); /* The three callbacks below are needed to support carrier migration */ - void (*add_mbc) (Allctr_t *, Carrier_t *, Uint32); - void (*remove_mbc) (Allctr_t *, Carrier_t *, Uint32); + void (*add_mbc) (Allctr_t *, Carrier_t *); + void (*remove_mbc) (Allctr_t *, Carrier_t *); UWord (*largest_fblk_in_mbc) (Allctr_t *, Carrier_t *); void (*init_atoms) (void); |