From 1a0df69cbfbbd8b60591b0ee8af9697b2039bcde Mon Sep 17 00:00:00 2001 From: aarzilli Date: Fri, 24 Mar 2017 11:10:21 +0100 Subject: [PATCH] proc: added func to threadBlocked --- pkg/proc/threads_darwin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proc/threads_darwin.go b/pkg/proc/threads_darwin.go index 38a935a5..bf1e557a 100644 --- a/pkg/proc/threads_darwin.go +++ b/pkg/proc/threads_darwin.go @@ -93,7 +93,7 @@ func threadBlocked(t IThread) bool { return false } switch fn.Name { - case "runtime.kevent", "runtime.mach_semaphore_wait", "runtime.usleep": + case "runtime.kevent", "runtime.mach_semaphore_wait", "runtime.usleep", "runtime.mach_semaphore_timedwait": return true default: return false