commit | 19b18ad552f612e45a79e248460a6236d4baa931 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Oct 06 21:43:38 2021 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Oct 07 01:41:14 2021 +0200 |
tree | 8dc2dd42a9646b1a3781c11d96885e5fd5bbb570 | |
parent | b63888c67ced3b83fe23834ebf24209f1b29339d [diff] |
CLENAUP: wdt: use ha_tkill() instead of accessing pthread directly Instead of calling pthread_kill() directly on the pthread_t let's call ha_tkill() which does the same by itself. This will help isolate pthread_t.
diff --git a/src/wdt.c b/src/wdt.c index c42c4f7..f1aa3ec 100644 --- a/src/wdt.c +++ b/src/wdt.c
@@ -115,7 +115,7 @@ */ #ifdef USE_THREAD if (thr != tid) - pthread_kill(ha_thread_info[thr].pthread, sig); + ha_tkill(thr, sig); else #endif ha_panic();