Changeset 9863dbf in rtems for cpukit/rtems/src


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

Location:
cpukit/rtems/src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • cpukit/rtems/src/dpmem.c

    r95fbca1 r9863dbf  
    3838  _Objects_Initialize_information(
    3939     &_Dual_ported_memory_Information,
     40     OBJECTS_RTEMS_PORTS,
    4041     FALSE,
    4142     maximum_ports,
  • cpukit/rtems/src/msg.c

    r95fbca1 r9863dbf  
    4646  _Objects_Initialize_information(
    4747    &_Message_queue_Information,
     48    OBJECTS_RTEMS_MESSAGE_QUEUES,
    4849    TRUE,
    4950    maximum_message_queues,
     
    286287          the_message_queue->Object.id,
    287288          0,                                 /* Not used */
    288           MPCI_DEFAULT_TIMEOUT
     289          0
    289290        );
    290291      }
  • cpukit/rtems/src/part.c

    r95fbca1 r9863dbf  
    4040  _Objects_Initialize_information(
    4141    &_Partition_Information,
     42    OBJECTS_RTEMS_PARTITIONS,
    4243    TRUE,
    4344    maximum_partitions,
  • cpukit/rtems/src/ratemon.c

    r95fbca1 r9863dbf  
    4242  _Objects_Initialize_information(
    4343     &_Rate_monotonic_Information,
     44     OBJECTS_RTEMS_PERIODS,
    4445     FALSE,
    4546     maximum_periods,
  • cpukit/rtems/src/region.c

    r95fbca1 r9863dbf  
    4040  _Objects_Initialize_information(
    4141     &_Region_Information,
     42     OBJECTS_RTEMS_REGIONS,
    4243     FALSE,
    4344     maximum_regions,
  • cpukit/rtems/src/rtemstimer.c

    r95fbca1 r9863dbf  
    3939  _Objects_Initialize_information(
    4040     &_Timer_Information,
     41     OBJECTS_RTEMS_TIMERS,
    4142     FALSE,
    4243     maximum_timers,
  • cpukit/rtems/src/sem.c

    r95fbca1 r9863dbf  
    5757  _Objects_Initialize_information(
    5858    &_Semaphore_Information,
     59     OBJECTS_RTEMS_SEMAPHORES,
    5960    TRUE,
    6061    maximum_semaphores,
  • cpukit/rtems/src/tasks.c

    r95fbca1 r9863dbf  
    144144  }
    145145
    146   the_thread->name                   = name;
    147146  the_thread->attribute_set          = the_attribute_set;
    148147  the_thread->current_state          = STATES_DORMANT;
Note: See TracChangeset for help on using the changeset viewer.