diff options
author | Lukas Larsson <[email protected]> | 2015-07-14 15:20:16 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2015-12-15 10:05:43 +0100 |
commit | 17ecb94437bac6726044d299dde48d02dd2b2e9c (patch) | |
tree | 4465730f25a5a174583849f6e89067343d1d89e2 /erts/emulator/beam/module.c | |
parent | 31b8dd2b4b5259d9ed2178017c3580c42bf62ec6 (diff) | |
download | otp-17ecb94437bac6726044d299dde48d02dd2b2e9c.tar.gz otp-17ecb94437bac6726044d299dde48d02dd2b2e9c.tar.bz2 otp-17ecb94437bac6726044d299dde48d02dd2b2e9c.zip |
erts: Refactor out erts functions from hash
Diffstat (limited to 'erts/emulator/beam/module.c')
-rw-r--r-- | erts/emulator/beam/module.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/erts/emulator/beam/module.c b/erts/emulator/beam/module.c index 86dd3b5aac..2db6f957c6 100644 --- a/erts/emulator/beam/module.c +++ b/erts/emulator/beam/module.c @@ -103,6 +103,9 @@ void init_module_table(void) f.cmp = (HCMP_FUN) module_cmp; f.alloc = (HALLOC_FUN) module_alloc; f.free = (HFREE_FUN) module_free; + f.meta_alloc = (HMALLOC_FUN) erts_alloc; + f.meta_free = (HMFREE_FUN) erts_free; + f.meta_print = (HMPRINT_FUN) erts_print; for (i = 0; i < ERTS_NUM_CODE_IX; i++) { erts_index_init(ERTS_ALC_T_MODULE_TABLE, &module_tables[i], "module_code", |