forked from Imagelibrary/rtems
Minor bug fixes to get all targets compilable and running. The
single biggest changes were the expansion of the workspace size macro to include other types of objects and the increase in the minimum stack size for most CPUs.
This commit is contained in:
@@ -130,7 +130,7 @@ rtems_monitor_id_fixup(
|
||||
#else
|
||||
#warning "TONY... FIX ME!!!!!"
|
||||
#if defined(hppa1_1)
|
||||
#error "TONY... I SAID TO FIX ME!!!!! <HAHAHAHAHA>"
|
||||
#warning "TONY... I SAID TO FIX ME!!!!! <HAHAHAHAHA>"
|
||||
#endif
|
||||
id = _Objects_Build_id(0, default_node, rtems_get_index(id));
|
||||
#endif
|
||||
|
||||
@@ -18,9 +18,9 @@ rtems_monitor_queue_canonical(
|
||||
Message_queue_Control *rtems_queue = (Message_queue_Control *) queue_void;
|
||||
|
||||
canonical_queue->attributes = rtems_queue->attribute_set;
|
||||
canonical_queue->maximum_message_size = rtems_queue->maximum_message_size;
|
||||
canonical_queue->maximum_pending_messages = rtems_queue->maximum_pending_messages;
|
||||
canonical_queue->number_of_pending_messages = rtems_queue->number_of_pending_messages;
|
||||
canonical_queue->maximum_message_size = rtems_queue->message_queue.maximum_message_size;
|
||||
canonical_queue->maximum_pending_messages = rtems_queue->message_queue.maximum_pending_messages;
|
||||
canonical_queue->number_of_pending_messages = rtems_queue->message_queue.number_of_pending_messages;
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user