aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/hipe/hipe_x86_signal.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2017-03-28 11:56:43 +0200
committerSverker Eriksson <[email protected]>2017-03-28 11:56:43 +0200
commitdeaa890b3da0be617c9f62c968ba829c146fb2d6 (patch)
tree1e982126c0f42b246caa35a9d211c55d47a30f9f /erts/emulator/hipe/hipe_x86_signal.c
parent8e44a7ef60248eec658cfc81ad1110bc72a937c7 (diff)
parent29bf1c9b7f33d64871c0f973be4a732850d98572 (diff)
downloadotp-deaa890b3da0be617c9f62c968ba829c146fb2d6.tar.gz
otp-deaa890b3da0be617c9f62c968ba829c146fb2d6.tar.bz2
otp-deaa890b3da0be617c9f62c968ba829c146fb2d6.zip
Merge branch 'sverker/hipe-long-lived'
* sverker/hipe-long-lived: Make hipe_bifs:alloc_data/3 pad addr to alignment erts: Change HIPE allocations from sys_alloc
Diffstat (limited to 'erts/emulator/hipe/hipe_x86_signal.c')
-rw-r--r--erts/emulator/hipe/hipe_x86_signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_x86_signal.c b/erts/emulator/hipe/hipe_x86_signal.c
index 1a34ce786c..b24b9148a2 100644
--- a/erts/emulator/hipe/hipe_x86_signal.c
+++ b/erts/emulator/hipe/hipe_x86_signal.c
@@ -267,7 +267,7 @@ void hipe_thread_signal_init(void)
{
/* Stack don't really need to be cache aligned.
We use it to suppress false leak report from valgrind */
- hipe_sigaltstack(erts_alloc_permanent_cache_aligned(ERTS_ALC_T_HIPE, SIGSTKSZ));
+ hipe_sigaltstack(erts_alloc_permanent_cache_aligned(ERTS_ALC_T_HIPE_LL, SIGSTKSZ));
}
#endif