diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-24 22:21:02 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-24 22:21:02 +0000 |
commit | 8d1d25222ec4b1c0d590cd888499d2061eaa67e3 (patch) | |
tree | c518cd9e0d91e8eac1583148d71c237d7ed8a495 /lldb/examples/python/operating_system.py | |
parent | fdb497a9b2967a1cffe476abb9200ed1ed8cd85c (diff) | |
download | bcm5719-llvm-8d1d25222ec4b1c0d590cd888499d2061eaa67e3.tar.gz bcm5719-llvm-8d1d25222ec4b1c0d590cd888499d2061eaa67e3.zip |
Remove a print statement that was left in accidentally.
llvm-svn: 180223
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) |