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;
|
long lwpid;
|
||||||
thr_self( &lwpid );
|
thr_self( &lwpid );
|
||||||
ret = lwpid;
|
ret = lwpid;
|
||||||
|
#elif defined(__DragonFly__)
|
||||||
|
ret = lwp_gettid();
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue