Changeset 9863dbf in rtems for c/src/lib/libmisc


Ignore:
Timestamp:
08/18/95 21:42:58 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0f592fba
Parents:
95fbca1
Message:

+ Added object type field to object id.

+ Added name pointer to Object_Control.

+ Modified Object Open and Close to address name field.

+ Removed name as separate element from Thread and Proxy Control.

+ Added parameter "object class" to calls to Initialize Information

File:
1 edited

Legend:

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

    r95fbca1 r9863dbf  
    121121#if 0
    122122        /* XXX Uncomment this when types are added to id's */
    123         if (rtems_get_type(id) != RTEMS_OBJECT_INVALID)
    124             type = rtems_get_type(id);
     123        if (rtems_get_class(id) != OBJECTS_NO_CLASS)
     124            type = rtems_get_class(id);
    125125
    126126        id = _Objects_Build_id(type, default_node, rtems_get_index(id));
    127127#else
    128         id = _Objects_Build_id(default_node, rtems_get_index(id));
     128#warning "TONY... FIX ME!!!!!"
     129#if defined(hppa1_1)
     130#error "TONY... I SAID TO FIX ME!!!!!  <HAHAHAHAHA>"
     131#endif
     132        id = _Objects_Build_id(0, default_node, rtems_get_index(id));
    129133#endif
    130134    }
Note: See TracChangeset for help on using the changeset viewer.