Commit 4c44e151 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Get the unix tid on DragonFly BSD.

parent 1b1af341
...@@ -955,6 +955,8 @@ static int get_unix_tid(void) ...@@ -955,6 +955,8 @@ static int get_unix_tid(void)
long lwpid; long lwpid;
thr_self( &lwpid ); thr_self( &lwpid );
ret = lwpid; ret = lwpid;
#elif defined(__DragonFly__)
ret = lwp_gettid();
#endif #endif
return ret; return ret;
} }
......
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