summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/rtems.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-07-27 14:11:19 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:40 +1000
commit09086b415db7bb08cca41fc3fff212bbaece327a (patch)
tree4c92d0d76c60091bb1c737ca062b92d2bafbfe30 /tools/gdb/python/rtems.py
parentAdded support for classic/timers. (diff)
downloadrtems-tools-09086b415db7bb08cca41fc3fff212bbaece327a.tar.bz2
Support classic/partitions
Added support for partition object.
Diffstat (limited to 'tools/gdb/python/rtems.py')
-rw-r--r--tools/gdb/python/rtems.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gdb/python/rtems.py b/tools/gdb/python/rtems.py
index bd2d8e4..eac5042 100644
--- a/tools/gdb/python/rtems.py
+++ b/tools/gdb/python/rtems.py
@@ -78,7 +78,8 @@ class rtems_object(gdb.Command):
'classic/semaphores': lambda id: classic.semaphore(id),
'classic/tasks': lambda id: classic.task(id),
'classic/message_queues': lambda id: classic.message_queue(id),
- 'classic/timers' : lambda id: classic.timer(id)
+ 'classic/timers' : lambda id: classic.timer(id),
+ 'classic/partitions' : lambda id: classic.partition(id)
}
def __init__(self):