aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lj_mcode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_mcode.c b/src/lj_mcode.c
index 42aab0bc..163aada4 100644
--- a/src/lj_mcode.c
+++ b/src/lj_mcode.c
@@ -168,7 +168,7 @@ static void mcode_protect(jit_State *J, int prot)
168#define MCPROT_RUN MCPROT_RX 168#define MCPROT_RUN MCPROT_RX
169 169
170/* Protection twiddling failed. Probably due to kernel security. */ 170/* Protection twiddling failed. Probably due to kernel security. */
171static LJ_NOINLINE void mcode_protfail(jit_State *J) 171static LJ_NORET LJ_NOINLINE void mcode_protfail(jit_State *J)
172{ 172{
173 lua_CFunction panic = J2G(J)->panic; 173 lua_CFunction panic = J2G(J)->panic;
174 if (panic) { 174 if (panic) {
@@ -176,6 +176,7 @@ static LJ_NOINLINE void mcode_protfail(jit_State *J)
176 setstrV(L, L->top++, lj_err_str(L, LJ_ERR_JITPROT)); 176 setstrV(L, L->top++, lj_err_str(L, LJ_ERR_JITPROT));
177 panic(L); 177 panic(L);
178 } 178 }
179 exit(EXIT_FAILURE);
179} 180}
180 181
181/* Change protection of MCode area. */ 182/* Change protection of MCode area. */