diff options
Diffstat (limited to 'lldb/examples/python/operating_system.py')
-rw-r--r-- | lldb/examples/python/operating_system.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/examples/python/operating_system.py b/lldb/examples/python/operating_system.py index cd4ae37f854..49cd5ff3439 100644 --- a/lldb/examples/python/operating_system.py +++ b/lldb/examples/python/operating_system.py @@ -25,7 +25,6 @@ class OperatingSystemPlugIn(object): return self.process.target def create_thread(self, tid, context): - print 'tid type is: ' + str(type(tid)) if tid == 0x444444444: thread_info = { 'tid' : tid, 'name' : 'four' , 'queue' : 'queue4', 'state' : 'stopped', 'stop_reason' : 'none' } self.threads.append(thread_info) |