summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-05 20:06:49 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-05 20:06:49 +0000
commit2ba640f35961a6e3bf35a7aa9618c7d6fb0e2fba (patch)
treea7b0fcff2b0b881e65eb62d3b3b6976715bdb6c5 /thread_pthread.c
parente09c14a05f7872178d725179331c4dc7a109aa87 (diff)
thread_pthread: stop trying to deal with cancellation
We don't use pthreads cancellation ourselves and it's painful to use correctly. Any cancelled threads would break vm->living_threads, GVL, thread_sync.c, autoload, etc... So don't bother caring; because we can't stop rogue extensions from completely breaking the VM in other ways, either. [ruby-core:88282] [Misc #14962] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64197 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 33443ac054..545cc2fa3b 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1551,11 +1551,6 @@ mjit_worker(void *arg)
{
void (*worker_func)(void) = (void(*)(void))arg;
-#ifdef PTHREAD_CANCEL_ENABLE
- if (pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0) {
- fprintf(stderr, "Cannot enable cancellation in MJIT worker\n");
- }
-#endif
#ifdef SET_CURRENT_THREAD_NAME
SET_CURRENT_THREAD_NAME("ruby-mjitworker"); /* 16 byte including NUL */
#endif