summaryrefslogtreecommitdiff
path: root/tools/gdb/python/__init__.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-07-13 16:31:59 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:40 +1000
commit0967a1b679495f728781bd05318379024cadf5c5 (patch)
tree23e380a16be8f044df9d894855065d27664962f1 /tools/gdb/python/__init__.py
parenta785e254f2360e946baa14a11fbd3f403047b880 (diff)
Refactoring
- drop _printer suffix from printer classes.
Diffstat (limited to '')
-rw-r--r--tools/gdb/python/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gdb/python/__init__.py b/tools/gdb/python/__init__.py
index dd55529..694eb06 100644
--- a/tools/gdb/python/__init__.py
+++ b/tools/gdb/python/__init__.py
@@ -13,7 +13,7 @@ if __name__ == "__main__":
import supercore_printer
import classic_printer
- # Needed to reload code inside gdb source command
+ # Needed inorder to reload code from inside gdb
reload(supercore)
reload(chains)
reload(rtems)
@@ -22,4 +22,5 @@ if __name__ == "__main__":
reload(threads)
reload(supercore_printer)
reload(classic_printer)
+
print 'RTEMS GDB Support loaded'