Fix eh_personality for NO_PTHREADS

main
Dustin Howett 8 years ago
parent 430ab75014
commit 6af4fcb219

@ -562,7 +562,7 @@ struct thread_data *get_thread_data(void)
} }
return td; return td;
#else #else
return &td; return &thread_data;
#endif #endif
} }
@ -572,7 +572,7 @@ struct thread_data *get_thread_data_fast(void)
struct thread_data *td = pthread_getspecific(key); struct thread_data *td = pthread_getspecific(key);
return td; return td;
#else #else
return &td; return &thread_data;
#endif #endif
} }

Loading…
Cancel
Save