X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gettime-thread.c;h=19541b474b75878999657475f88d46178ad7c831;hp=65ca83419d0f6f82ba5bab3c270ea81f1cd80c5c;hb=c16556af62cd1cd1ae31b6ee8706efc43c137f77;hpb=2a2f27b866dea76316f36baa0e318e6f06b99738 diff --git a/gettime-thread.c b/gettime-thread.c index 65ca8341..19541b47 100644 --- a/gettime-thread.c +++ b/gettime-thread.c @@ -8,8 +8,8 @@ struct timeval *fio_tv = NULL; int fio_gtod_offload = 0; -static os_cpu_mask_t fio_gtod_cpumask; static pthread_t gtod_thread; +static os_cpu_mask_t fio_gtod_cpumask; void fio_gtod_init(void) { @@ -71,7 +71,7 @@ int fio_start_gtod_thread(void) return 1; pthread_attr_init(&attr); - pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN); + pthread_attr_setstacksize(&attr, 2 * PTHREAD_STACK_MIN); ret = pthread_create(>od_thread, &attr, gtod_thread_main, mutex); pthread_attr_destroy(&attr); if (ret) { @@ -81,7 +81,7 @@ int fio_start_gtod_thread(void) ret = pthread_detach(gtod_thread); if (ret) { - log_err("Can't detatch gtod thread: %s\n", strerror(ret)); + log_err("Can't detach gtod thread: %s\n", strerror(ret)); goto err; }