summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/supercore.py
blob: 7e958b119ba5bcecf22237c926615249518742fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# RTEMS Supercore Objects
#

import threads
import helper

class CORE_message_queue:
    '''Manage a Supercore message_queue'''

    def __init__(self, message_queue):
        self.queue = message_queue
        self.wait_queue = threads.queue(self.queue['Wait_queue'])
        # ToDo: self.attribute =''
        # self.buffer

    def show(self):
        helper.tasks_printer_rotuine(self.wait_queue)