From 5b12501163912398400332de00128d968b76744e Mon Sep 17 00:00:00 2001 From: k0kubun Date: Mon, 26 Nov 2018 15:12:30 +0000 Subject: Revert "process.c: try to workaroun SEGV by r65994" This reverts commit 0e6aba22c6b876a36adc39cac5314ce6e626954c. because it didn't help, at all. http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/1480207 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal.h') diff --git a/internal.h b/internal.h index 17507e9992..b505a47ace 100644 --- a/internal.h +++ b/internal.h @@ -1634,12 +1634,12 @@ VALUE rb_math_sqrt(VALUE); extern int mjit_enabled; VALUE mjit_pause(int wait_p); VALUE mjit_resume(void); -void mjit_clean_files(void); +void mjit_finish(void); #else #define mjit_enabled 0 static inline VALUE mjit_pause(int wait_p){ return Qnil; } /* unreachable */ static inline VALUE mjit_resume(void){ return Qnil; } /* unreachable */ -static void mjit_clean_files(void){} +static inline void mjit_finish(void){} #endif /* newline.c */ -- cgit v1.2.3