Commit 9b8a95f6 authored by unknown's avatar unknown

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


innobase/os/os0thread.c:
  Added &attr to os_thread_create to get in compile on HP-UX
parent d4472af9
...@@ -78,7 +78,7 @@ os_thread_create( ...@@ -78,7 +78,7 @@ os_thread_create(
pthread_attr_init(&attr); pthread_attr_init(&attr);
ret = pthread_create(&pthread, NULL, start_f, arg); ret = pthread_create(&pthread, &attr, start_f, arg);
pthread_attr_destroy(&attr); 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