From 95fbca1940805db2eca55e4ea605a5a552a36bc0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 18 Aug 1995 21:41:27 +0000 Subject: + 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. --- cpukit/score/include/rtems/score/thread.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'cpukit/score/include/rtems/score/thread.h') diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h index 953e19ba95..ddae52a363 100644 --- a/cpukit/score/include/rtems/score/thread.h +++ b/cpukit/score/include/rtems/score/thread.h @@ -133,14 +133,13 @@ typedef struct { typedef struct { Objects_Control Object; - Objects_Name name; States_Control current_state; - rtems_task_priority current_priority; - rtems_task_priority real_priority; + rtems_task_priority current_priority; + rtems_task_priority real_priority; unsigned32 resource_count; Thread_Wait_information Wait; Watchdog_Control Timer; - rtems_packet_prefix *receive_packet; + rtems_packet_prefix *receive_packet; /****************** end of common block ********************/ Chain_Node Active; } Thread_Proxy_control; @@ -156,7 +155,6 @@ typedef struct { typedef struct { Objects_Control Object; - Objects_Name name; States_Control current_state; rtems_task_priority current_priority; rtems_task_priority real_priority; -- cgit v1.2.3