Remove empty comments from FreeRTOSgdb/EventGroup.py (#428)

* Remove empty comments from FreeRTOSgdb/EventGroup.py
* Remove empty comments from FreeRTOSgdb/QueueTools.py
* Remove empty comments from FreeRTOSgdb/List.py
This commit is contained in:
あく 2021-04-26 14:58:06 +03:00 committed by GitHub
parent 577606afb9
commit dbb8a92653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 4 deletions

View File

@ -15,11 +15,9 @@ class EventGroupInspector:
EvtGrpType = gdb.lookup_type("EventGroup_t")
def __init__(self, handle):
""""""
self._evtgrp = gdb.Value(handle).cast(EventGroupInspector.EvtGrpType)
def GetTasksWaiting(self):
""""""
taskListObj = self._evtgrp["xTasksWaitingForBits"]
taskList = ListInspector(taskListObj)
return taskList.GetElements(TaskInspector.TCBType)

View File

@ -19,7 +19,6 @@ class ListInspector:
ListType = gdb.lookup_type("List_t")
def __init__(self, handle):
""""""
self._list = None
# print("List: Handle: %s" % handle)
self.Assign(handle)

View File

@ -51,7 +51,6 @@ class QueueInspector:
QueueType = gdb.lookup_type("Queue_t")
def __init__(self, handle):
""""""
# print("Queue: Handle: %s" % handle)
self.name = None
queueObjPtr = None