source: rtems-tools/tools/gdb/python/supercore.py @ b9ee5df

4.104.115
Last change on this file since b9ee5df was b9ee5df, checked in by Dhananjay Balan <mb.dhananjay@…>, on 07/28/13 at 09:15:58

Add region support.

Abstractions for classic/region added.

  • Property mode set to 100644
File size: 403 bytes
Line 
1#
2# RTEMS Supercore Objects
3#
4
5import threads
6import helper
7
8class CORE_message_queue:
9    '''Manage a Supercore message_queue'''
10
11    def __init__(self, message_queue):
12        self.queue = message_queue
13        self.wait_queue = threads.queue(self.queue['Wait_queue'])
14        # ToDo: self.attribute =''
15        # self.buffer
16
17    def show(self):
18        helper.tasks_printer_routine(self.wait_queue)
Note: See TracBrowser for help on using the repository browser.