Formatting

This commit is contained in:
Justin Ethier 2025-01-20 18:57:04 -08:00
parent d7f624ad24
commit f59ce9999e
2 changed files with 3 additions and 4 deletions

View file

@ -7140,8 +7140,7 @@ void *Cyc_init_thread(object thread_and_thunk, int argc, object * args)
ck_pr_cas_int((int *)&(thd->thread_state), CYC_THREAD_STATE_NEW,
CYC_THREAD_STATE_RUNNABLE);
if (ck_pr_cas_int(&cyclone_thread_key_create, 1, 0)) {
int r =
pthread_key_create(&cyclone_thread_key,
int r = pthread_key_create(&cyclone_thread_key,
(void (*)(void *))Cyc_cancel_thread);
assert(r == 0);
}