Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
vendor
/
rustix
/
tests
/
thread
/
id.rs
blob: 7aa5abba50cb2d27042fd3d6b1af2e40907f75ef [
file
] [
log
] [
blame
]
use
rustix
::
thread
;
#[
cfg
(
any
(
target_os
=
"android"
,
target_os
=
"linux"
))]
#[
test
]
fn
test_gettid
()
{
assert_eq
!(
thread
::
gettid
(),
thread
::
gettid
());
}