summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/rtems.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-07-17 16:00:57 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:40 +1000
commit086e689955e3b0692d00bf2fc0ea1be7ed244e07 (patch)
treed476babc4119ae58d80c9dbc816c2df612b5bea7 /tools/gdb/python/rtems.py
parentFix typo: Global timer control object name. (diff)
downloadrtems-tools-086e689955e3b0692d00bf2fc0ea1be7ed244e07.tar.bz2
Added support for classic/timers.
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 4622ced..bd2d8e4 100644
--- a/tools/gdb/python/rtems.py
+++ b/tools/gdb/python/rtems.py
@@ -77,7 +77,8 @@ class rtems_object(gdb.Command):
objects = {
'classic/semaphores': lambda id: classic.semaphore(id),
'classic/tasks': lambda id: classic.task(id),
- 'classic/message_queues': lambda id: classic.message_queue(id)
+ 'classic/message_queues': lambda id: classic.message_queue(id),
+ 'classic/timers' : lambda id: classic.timer(id)
}
def __init__(self):