summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-16 20:28:34 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-16 20:28:34 +0100
commitf0d7e0e0ee0cb0362ee79739922a76faef17917c (patch)
tree3a1d8913d1d72ce988658cf6ccbe4d251e8d7634 /hurd
parent86182db253e1dbb63ee2969a3e1a7f5ab144aed5 (diff)
Remove saved_thread_state from utcb structure.
hurd/ 2008-12-16 Neal H. Walfield <neal@gnu.org> * thread.h (struct vg_utcb): Remove field saved_thread_state. libhurd-mm/ 2008-12-16 Neal H. Walfield <neal@gnu.org> * ia32-exception-entry.S (UTCB_SAVED_THREAD_STATE): Don't define. (UTCB_ACTIVATION_FRAME_STACK): Adjust to new structure layout. viengoos/ 2008-12-16 Neal H. Walfield <neal@gnu.org> * thread.c (thread_activate): Don't update UTCB->SAVED_THREAD_STATE.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/ChangeLog4
-rw-r--r--hurd/thread.h2
2 files changed, 4 insertions, 2 deletions
diff --git a/hurd/ChangeLog b/hurd/ChangeLog
index 5b1920c..34e3ba7 100644
--- a/hurd/ChangeLog
+++ b/hurd/ChangeLog
@@ -1,5 +1,9 @@
2008-12-16 Neal H. Walfield <neal@gnu.org>
+ * thread.h (struct vg_utcb): Remove field saved_thread_state.
+
+2008-12-16 Neal H. Walfield <neal@gnu.org>
+
* addr-trans.h: Don't include <l4/types.h>. Include <stdint.h>
and <hurd/math.h>.
(struct cap_addr_trans): Replace l4 types with standard types.
diff --git a/hurd/thread.h b/hurd/thread.h
index 81a4925..522d13a 100644
--- a/hurd/thread.h
+++ b/hurd/thread.h
@@ -175,8 +175,6 @@ struct vg_utcb
/* The value of the IP and SP when the thread was running. */
uintptr_t saved_ip;
uintptr_t saved_sp;
- /* The state of the thread (as returned by _L4_exchange_regs) */
- uintptr_t saved_thread_state;
/* Top of the activation frame stack (i.e., the active
activation). */