Sign in
chromium
/
chromiumos
/
third_party
/
compiler-rt
/
89a8e62c03aa2cfe044c9023ec3bbaefb835a7df
/
.
/
test
/
hwasan
/
TestCases
/
pthread_exit.c
blob: 937e20c6ad194d29a6c533017fb841537eb3f77a [
file
] [
log
] [
blame
]
// Tests pthread_exit.
// RUN: %clang_hwasan %s -o %t && %run %t
// REQUIRES: stable-runtime
#include
<pthread.h>
int
main
()
{
pthread_exit
(
NULL
);
}