forked from OSchip/llvm-project
Remove a print statement that was left in accidentally.
llvm-svn: 180223
This commit is contained in:
parent
fdb497a9b2
commit
8d1d25222e
lldb/examples/python
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue