diff options
author | Lukas Larsson <[email protected]> | 2011-09-29 18:01:34 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-09-29 18:01:34 +0200 |
commit | beaa58d5724c4ae45a716accdeee58961a27e1d9 (patch) | |
tree | 31b3018e850b6cf3ea26cbeaab67208f1a79dcb9 /erts/emulator/beam/erl_alloc.c | |
parent | 1be1c1cb15068aed40a30210c8be34f36e38ed66 (diff) | |
parent | b75eb2e04df5ccce6f9e62c67fbf8d8a9ac8f425 (diff) | |
download | otp-beaa58d5724c4ae45a716accdeee58961a27e1d9.tar.gz otp-beaa58d5724c4ae45a716accdeee58961a27e1d9.tar.bz2 otp-beaa58d5724c4ae45a716accdeee58961a27e1d9.zip |
Merge branch 'sverker/stub-module-code-leakage' into dev
* sverker/stub-module-code-leakage:
Prevent valgrind warning for erts_alloc_permanent_cache_aligned
[erts] Fix memory leak in erts_make_stub_module (hipe loading)
Diffstat (limited to 'erts/emulator/beam/erl_alloc.c')
-rw-r--r-- | erts/emulator/beam/erl_alloc.c | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_alloc.c b/erts/emulator/beam/erl_alloc.c index bbc8a445a7..9af80dd7a9 100644 --- a/erts/emulator/beam/erl_alloc.c +++ b/erts/emulator/beam/erl_alloc.c @@ -2960,6 +2960,29 @@ erts_allocator_options(void *proc) return res; } +void *erts_alloc_permanent_cache_aligned(ErtsAlcType_t type, Uint size) +{ + UWord v = (UWord) erts_alloc(type, size + (ERTS_CACHE_LINE_SIZE-1)); + +#ifdef VALGRIND + { /* Avoid Leak_PossiblyLost */ + static UWord vg_root_set[10]; + static unsigned ix = 0; + if (ix >= sizeof(vg_root_set) / sizeof(*vg_root_set)) { + erl_exit(ERTS_ABORT_EXIT, "Too many erts_alloc_permanent_cache_aligned's\n"); + } + vg_root_set[ix++] = v; /* not thread safe */ + } +#endif + + if (v & ERTS_CACHE_LINE_MASK) { + v = (v & ~ERTS_CACHE_LINE_MASK) + ERTS_CACHE_LINE_SIZE; + } + ASSERT((v & ERTS_CACHE_LINE_MASK) == 0); + return (void*)v; +} + + /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\ * Deprecated functions * * * @@ -3583,6 +3606,4 @@ install_debug_functions(void) return FENCE_SZ; } - - #endif /* #ifdef DEBUG */ |