ntdll: Get the unix tid on DragonFly BSD.
This commit is contained in:
parent
1b1af34173
commit
4c44e151be
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue