mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
os0thread.c Added &attr to os_thread_create to get in compile on HP-UX
This commit is contained in:
parent
d1c10d6445
commit
d03b4308b4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue