You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// RUN: clang-tidy %s --checks=-*,bugprone-bad-signal-to-kill-thread -- | count 0
|
|
|
|
#define SIGTERM 15
|
|
#undef SIGTERM // no-crash
|
|
using pthread_t = int;
|
|
int pthread_kill(pthread_t thread, int sig);
|
|
|
|
int func() {
|
|
pthread_t thread;
|
|
return pthread_kill(thread, 0);
|
|
}
|