]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/hwasan/TestCases/pthread_exit.c
Vendor import of compiler-rt trunk r351319 (just before the release_80
[FreeBSD/FreeBSD.git] / test / hwasan / TestCases / pthread_exit.c
1 // Tests pthread_exit.
2 // RUN: %clang_hwasan %s -o %t && %run %t
3 // REQUIRES: stable-runtime
4 #include <pthread.h>
5 int main() { pthread_exit(NULL); }