Skip to content

Commit 03f89d3

Browse files
committedAug 28, 2018
SafeStack: Fix thread liveness check on *BSD
Summary: The Linux/BSD system call interfaces report errors differently, use the internal_iserror() function to correctly check errors on either. Reviewers: eugenis Reviewed By: eugenis Subscribers: delcypher, llvm-commits, #sanitizers, krytarowski, kcc, devnexen Differential Revision: https://reviews.llvm.org/D51368 llvm-svn: 340856
1 parent 35b1902 commit 03f89d3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎compiler-rt/lib/safestack/safestack.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,10 @@ static void thread_cleanup_handler(void *_iter) {
183183
thread_stack_ll **stackp = &temp_stacks;
184184
while (*stackp) {
185185
thread_stack_ll *stack = *stackp;
186-
if (stack->pid != pid || TgKill(stack->pid, stack->tid, 0) == -ESRCH) {
186+
int error;
187+
if (stack->pid != pid ||
188+
(internal_iserror(TgKill(stack->pid, stack->tid, 0), &error) &&
189+
error == ESRCH)) {
187190
UnmapOrDie(stack->stack_base, stack->size);
188191
*stackp = stack->next;
189192
free(stack);

0 commit comments

Comments
 (0)
Please sign in to comment.