We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f96dbad + 32e982a commit 4830729Copy full SHA for 4830729
drgn_tools/lock.py
@@ -127,6 +127,18 @@ def scan_sem_lock(prog: Program, stack: bool) -> None:
127
if frame_list:
128
show_sem_lock(prog, frame_list, seen_sems, stack)
129
130
+ frame_list = bt_has(prog, "__down_interruptible")
131
+ if frame_list:
132
+ show_sem_lock(prog, frame_list, seen_sems, stack)
133
+
134
+ frame_list = bt_has(prog, "__down_killable")
135
136
137
138
+ frame_list = bt_has(prog, "__down_timeout")
139
140
141
142
143
def scan_lock(prog: Program, stack: bool) -> None:
144
"""Scan tasks for Mutex and Semaphore"""
0 commit comments