summaryrefslogtreecommitdiff
path: root/tools/gdb/python/threads.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gdb/python/threads.py')
-rw-r--r--tools/gdb/python/threads.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/gdb/python/threads.py b/tools/gdb/python/threads.py
index 3debbe7..b5ac3fb 100644
--- a/tools/gdb/python/threads.py
+++ b/tools/gdb/python/threads.py
@@ -191,17 +191,5 @@ class queue:
self.que['Queues']['Priority'][ph])))
return t
- def to_string(self):
- if self.fifo():
- s = 'fifo'
- else:
- s = 'priority'
- return
-class state_printer:
- def __init__(self, s):
- self.s = state(s)
-
- def to_string(self):
- return self.s.to_string()