summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-19 09:28:56 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-19 09:28:56 +0000
commit92dd6d8445a2311bd94c2139a20a17cb49b67b91 (patch)
tree1187d38588844b5f8b390d9a43b8fa81c5717b02 /thread_pthread.c
parent4651ef77d2f434fe113b9c65adf143bc0650a6ca (diff)
thread_pthread.c: spelling ("cancellation")
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 12f5e6c473..a05f8a5263 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -1745,7 +1745,7 @@ mjit_worker(void *arg)
void (*worker_func)(void) = (void(*)(void))arg;
if (pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) != 0) {
- fprintf(stderr, "Cannot enable cancelation in MJIT worker\n");
+ fprintf(stderr, "Cannot enable cancellation in MJIT worker\n");
}
#ifdef SET_CURRENT_THREAD_NAME
SET_CURRENT_THREAD_NAME("ruby-mjitworker"); /* 16 byte including NUL */