Skip to content
Snippets Groups Projects
Commit 4c44e151 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

ntdll: Get the unix tid on DragonFly BSD.

parent 1b1af341
Branches
Tags
No related merge requests found
......@@ -955,6 +955,8 @@ static int get_unix_tid(void)
long lwpid;
thr_self( &lwpid );
ret = lwpid;
#elif defined(__DragonFly__)
ret = lwp_gettid();
#endif
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment