summaryrefslogtreecommitdiff
path: root/tools/gdb/python/watchdog.py
diff options
context:
space:
mode:
authorDhananjay Balan <mb.dhananjay@gmail.com>2013-08-25 23:03:44 +0530
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:41 +1000
commita7176a8a7e5542d9371026b135a864f15d79e1b5 (patch)
tree3a4689b709f0aa9642c70a077969c3b19a30b5ae /tools/gdb/python/watchdog.py
parent04d95ec2b272953b719836a283c35280c816e189 (diff)
Add watchdog ticks command.
- ToDo : Fix watchdog states.
Diffstat (limited to '')
-rw-r--r--tools/gdb/python/watchdog.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/tools/gdb/python/watchdog.py b/tools/gdb/python/watchdog.py
index 3678550..fef2f39 100644
--- a/tools/gdb/python/watchdog.py
+++ b/tools/gdb/python/watchdog.py
@@ -12,11 +12,6 @@ import objects
class state:
- INACTIVE = 0
- BEING_INSERTED = 1
- ACTIVE = 2
- REMOVE_IT = 3
-
states = {
0: 'inactive',
1: 'being-inserted',
@@ -35,9 +30,10 @@ class control:
def __init__(self, ctrl):
self.ctrl = ctrl
- # Not sure if an extra class is needed.
+ # ToDo: fix this.1
def state(self):
- return state(int(self.ctrl['state'])).to_string()
+ return state(1).to_string()
+ #return state(int(self.ctrl['state'])).to_string()
def initial(self):
return self.ctrl['initial']