Commit d03b4308 authored by heikki@donna.mysql.fi's avatar heikki@donna.mysql.fi

os0thread.c Added &attr to os_thread_create to get in compile on HP-UX

parent d1c10d64
......@@ -78,7 +78,7 @@ os_thread_create(
pthread_attr_init(&attr);
ret = pthread_create(&pthread, NULL, start_f, arg);
ret = pthread_create(&pthread, &attr, start_f, arg);
pthread_attr_destroy(&attr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment