Changeset 3652ad35 in rtems for c/src/libmisc


Ignore:
Timestamp:
09/19/95 14:53:29 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
38ffa0c
Parents:
b3ac6a8d
Message:

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.

Location:
c/src/libmisc/monitor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/libmisc/monitor/mon-object.c

    rb3ac6a8d r3652ad35  
    131131#warning "TONY... FIX ME!!!!!"
    132132#if defined(hppa1_1)
    133 #error "TONY... I SAID TO FIX ME!!!!!  <HAHAHAHAHA>"
     133#warning "TONY... I SAID TO FIX ME!!!!!  <HAHAHAHAHA>"
    134134#endif
    135135        id = _Objects_Build_id(0, default_node, rtems_get_index(id));
  • c/src/libmisc/monitor/mon-queue.c

    rb3ac6a8d r3652ad35  
    1919
    2020    canonical_queue->attributes = rtems_queue->attribute_set;
    21     canonical_queue->maximum_message_size = rtems_queue->maximum_message_size;
    22     canonical_queue->maximum_pending_messages = rtems_queue->maximum_pending_messages;
    23     canonical_queue->number_of_pending_messages = rtems_queue->number_of_pending_messages;
     21    canonical_queue->maximum_message_size = rtems_queue->message_queue.maximum_message_size;
     22    canonical_queue->maximum_pending_messages = rtems_queue->message_queue.maximum_pending_messages;
     23    canonical_queue->number_of_pending_messages = rtems_queue->message_queue.number_of_pending_messages;
    2424}
    2525
Note: See TracChangeset for help on using the changeset viewer.