summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/rtems.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-07-29 10:25:38 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:40 +1000
commit8e0de06b2bc6fecf8e055361590176698d0a648b (patch)
tree48da111ac76bc7a8e985e4401fb6e257fde8abda /tools/gdb/python/rtems.py
parentUpdate Readme. (diff)
downloadrtems-tools-8e0de06b2bc6fecf8e055361590176698d0a648b.tar.bz2
Add classic barrier.
- Add support for classic barrier object. - Drop CORE_ from names in supercore
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 8738736..adab86d 100644
--- a/tools/gdb/python/rtems.py
+++ b/tools/gdb/python/rtems.py
@@ -80,7 +80,8 @@ class rtems_object(gdb.Command):
'classic/message_queues': lambda id: classic.message_queue(id),
'classic/timers' : lambda id: classic.timer(id),
'classic/partitions' : lambda id: classic.partition(id),
- 'classic/regions' : lambda id: classic.region(id)
+ 'classic/regions' : lambda id: classic.region(id),
+ 'classic/barriers' : lambda id: classic.barrier(id)
}
def __init__(self):