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=8432bdab3c59cc1ef40d68f8890add0ef064ca86;hpb=61374d794c5d7084785b13ae8fa90c5c1a4680e8;p=mono.git diff --git a/mono/utils/mono-threads-posix-abort-syscall.c b/mono/utils/mono-threads-posix-abort-syscall.c index 8432bdab3c5..232161c273a 100644 --- a/mono/utils/mono-threads-posix-abort-syscall.c +++ b/mono/utils/mono-threads-posix-abort-syscall.c @@ -15,17 +15,18 @@ #endif #include "mono-threads.h" +#include "mono-threads-posix-signals.h" #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. */ @@ -35,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; }