summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/thread.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-18 21:41:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-08-18 21:41:27 +0000
commit95fbca1940805db2eca55e4ea605a5a552a36bc0 (patch)
tree8f4df72be3791d002048cff1ce082ab74cd435f6 /cpukit/score/include/rtems/score/thread.h
parentNumerous miscellaneous features incorporated from Tony Bennett (diff)
downloadrtems-95fbca1940805db2eca55e4ea605a5a552a36bc0.tar.bz2
+ 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.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/thread.h8
1 files changed, 3 insertions, 5 deletions
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;