mirror of
https://git.rtems.org/rtems-tools/
synced 2025-10-16 04:10:03 +08:00
Add classic barrier.
- Add support for classic barrier object. - Drop CORE_ from names in supercore
This commit is contained in:

committed by
Chris Johns

parent
c63080ddb2
commit
8e0de06b2b
@@ -39,9 +39,7 @@ class attribute:
|
|||||||
'semaphore-type',
|
'semaphore-type',
|
||||||
'semaphore-pri',
|
'semaphore-pri',
|
||||||
'semaphore-pri-ceiling'],
|
'semaphore-pri-ceiling'],
|
||||||
'barrier' : ['scope',
|
'barrier' : ['barrier'],
|
||||||
'priority',
|
|
||||||
'barrier'],
|
|
||||||
'message_queue' : ['priority',
|
'message_queue' : ['priority',
|
||||||
'scope'],
|
'scope'],
|
||||||
'partition' : ['scope'],
|
'partition' : ['scope'],
|
||||||
@@ -149,7 +147,7 @@ class semaphore:
|
|||||||
print 'semaphore'
|
print 'semaphore'
|
||||||
|
|
||||||
class task:
|
class task:
|
||||||
"Print a classic tasks."
|
"Print a classic task"
|
||||||
|
|
||||||
def __init__(self, id):
|
def __init__(self, id):
|
||||||
self.id = id;
|
self.id = id;
|
||||||
@@ -179,7 +177,7 @@ class message_queue:
|
|||||||
self.wait_queue = threads.queue( \
|
self.wait_queue = threads.queue( \
|
||||||
self.object['message_queue']['Wait_queue'])
|
self.object['message_queue']['Wait_queue'])
|
||||||
|
|
||||||
self.core_control = supercore.CORE_message_queue(self.object['message_queue'])
|
self.core_control = supercore.message_queue(self.object['message_queue'])
|
||||||
|
|
||||||
def show(self, from_tty):
|
def show(self, from_tty):
|
||||||
print ' Name:', self.object_control.name()
|
print ' Name:', self.object_control.name()
|
||||||
@@ -238,3 +236,25 @@ class region:
|
|||||||
helper.tasks_printer_routine(self.wait_queue)
|
helper.tasks_printer_routine(self.wait_queue)
|
||||||
print ' Memory:'
|
print ' Memory:'
|
||||||
self.heap.show()
|
self.heap.show()
|
||||||
|
|
||||||
|
class barrier:
|
||||||
|
'''classic barrier abstraction'''
|
||||||
|
|
||||||
|
def __init__(self,id):
|
||||||
|
self.id = id
|
||||||
|
self.object = objects.information.object(self.id).dereference()
|
||||||
|
self.object_control = objects.control(self.object['Object'])
|
||||||
|
self.attr = attribute(self.object['attribute_set'],'barrier')
|
||||||
|
self.core_b_control = supercore.barrier_control(self.object['Barrier'])
|
||||||
|
|
||||||
|
def show(self,from_tty):
|
||||||
|
print ' Name:',self.object_control.name()
|
||||||
|
print ' Attr:',self.attr.to_string()
|
||||||
|
|
||||||
|
if self.attr.test('barrier','barrier-auto-release'):
|
||||||
|
max_count = self.core_b_control.max_count()
|
||||||
|
print 'Aut Count:', max_count
|
||||||
|
|
||||||
|
print ' Waiting:',self.core_b_control.waiting_threads()
|
||||||
|
helper.tasks_printer_routine(self.core_b_control.tasks())
|
||||||
|
|
||||||
|
@@ -80,7 +80,8 @@ class rtems_object(gdb.Command):
|
|||||||
'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),
|
'classic/timers' : lambda id: classic.timer(id),
|
||||||
'classic/partitions' : lambda id: classic.partition(id),
|
'classic/partitions' : lambda id: classic.partition(id),
|
||||||
'classic/regions' : lambda id: classic.region(id)
|
'classic/regions' : lambda id: classic.region(id),
|
||||||
|
'classic/barriers' : lambda id: classic.barrier(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
import threads
|
import threads
|
||||||
import helper
|
import helper
|
||||||
|
|
||||||
class CORE_message_queue:
|
class message_queue:
|
||||||
'''Manage a Supercore message_queue'''
|
'''Manage a Supercore message_queue'''
|
||||||
|
|
||||||
def __init__(self, message_queue):
|
def __init__(self, message_queue):
|
||||||
@@ -16,3 +16,38 @@ class CORE_message_queue:
|
|||||||
|
|
||||||
def show(self):
|
def show(self):
|
||||||
helper.tasks_printer_routine(self.wait_queue)
|
helper.tasks_printer_routine(self.wait_queue)
|
||||||
|
|
||||||
|
class barrier_attributes:
|
||||||
|
'''supercore bbarrier attribute'''
|
||||||
|
|
||||||
|
def __init__(self,attr):
|
||||||
|
self.attr = attr
|
||||||
|
|
||||||
|
def max_count(self):
|
||||||
|
c = self.attr['maximum_count']
|
||||||
|
return c
|
||||||
|
|
||||||
|
def discipline(self):
|
||||||
|
d = self.attr['discipline']
|
||||||
|
return d
|
||||||
|
|
||||||
|
class barrier_control:
|
||||||
|
'''Manage a Supercore barrier'''
|
||||||
|
|
||||||
|
def __init__(self, barrier):
|
||||||
|
self.barrier = barrier
|
||||||
|
self.wait_queue = threads.queue(self.barrier['Wait_queue'])
|
||||||
|
self.attr = barrier_attributes(self.barrier['Attributes'])
|
||||||
|
|
||||||
|
def waiting_threads(self):
|
||||||
|
wt = self.barrier['number_of_waiting_threads']
|
||||||
|
return wt
|
||||||
|
|
||||||
|
def max_count(self):
|
||||||
|
return self.attr.max_count()
|
||||||
|
|
||||||
|
def discipline(self):
|
||||||
|
return self.attr.discipline()
|
||||||
|
|
||||||
|
def tasks(self):
|
||||||
|
return self.wait_queue
|
||||||
|
Reference in New Issue
Block a user