X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Futils%2Fmono-threads-posix-abort-syscall.c;h=232161c273a23d6e01aaa1490206975c15039d56;hb=e77ba5ed3d0b2f0259d82b0c65201327a7ae4bb3;hp=4935bd1b3686ba986ee364e3e15ef1c9ea37de88;hpb=b7a308f660de8174b64697a422abfc7315d07b8c;p=mono.git diff --git a/mono/utils/mono-threads-posix-abort-syscall.c b/mono/utils/mono-threads-posix-abort-syscall.c index 4935bd1b368..232161c273a 100644 --- a/mono/utils/mono-threads-posix-abort-syscall.c +++ b/mono/utils/mono-threads-posix-abort-syscall.c @@ -17,16 +17,16 @@ #include "mono-threads.h" #include "mono-threads-posix-signals.h" -#if defined(USE_POSIX_SYSCALL_ABORT) +#if defined(USE_POSIX_BACKEND) void -mono_threads_init_abort_syscall (void) +mono_threads_abort_syscall_init (void) { mono_threads_posix_init_signals (MONO_THREADS_POSIX_INIT_SIGNALS_ABORT); } void -mono_threads_core_abort_syscall (MonoThreadInfo *info) +mono_threads_suspend_abort_syscall (MonoThreadInfo *info) { /* We signal a thread to break it from the current syscall. * This signal should not be interpreted as a suspend request. */ @@ -36,7 +36,7 @@ mono_threads_core_abort_syscall (MonoThreadInfo *info) } gboolean -mono_threads_core_needs_abort_syscall (void) +mono_threads_suspend_needs_abort_syscall (void) { return TRUE; }