summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/helper.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-07-28 14:45:58 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:40 +1000
commitb9ee5df588aa1a4cf0a64cf511b0585309ff5510 (patch)
tree69ee1aa7385e8eff7cd975259a58a55d33c95731 /tools/gdb/python/helper.py
parentAbstraction for HEAP. (diff)
downloadrtems-tools-b9ee5df588aa1a4cf0a64cf511b0585309ff5510.tar.bz2
Add region support.
Abstractions for classic/region added.
Diffstat (limited to 'tools/gdb/python/helper.py')
-rw-r--r--tools/gdb/python/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gdb/python/helper.py b/tools/gdb/python/helper.py
index ec17400..c9c9a42 100644
--- a/tools/gdb/python/helper.py
+++ b/tools/gdb/python/helper.py
@@ -1,7 +1,7 @@
#
# RTEMS GDB support helper routins.
-def tasks_printer_rotuine(wait_queue):
+def tasks_printer_routine(wait_queue):
tasks = wait_queue.tasks()
print ' Queue: len = %d, state = %s' % (len(tasks),wait_queue.state())
for t in range(0, len(tasks)):