diff options
author | Roland McGrath <roland@gnu.org> | 1994-08-08 07:39:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-08-08 07:39:58 +0000 |
commit | c693c1caaf48160d9e2d8c22dd5a2d0806a4a333 (patch) | |
tree | f88341a4d19ad9a838d8d6317e71946e81095b11 /sysdeps/mach/mips | |
parent | d85eb528c4405cf8d1fd109fd06ab8c418e47744 (diff) | |
download | glibc-c693c1caaf48160d9e2d8c22dd5a2d0806a4a333.tar glibc-c693c1caaf48160d9e2d8c22dd5a2d0806a4a333.tar.gz glibc-c693c1caaf48160d9e2d8c22dd5a2d0806a4a333.tar.bz2 glibc-c693c1caaf48160d9e2d8c22dd5a2d0806a4a333.zip |
(struct machine_thread_all_state): New type.
Diffstat (limited to 'sysdeps/mach/mips')
-rw-r--r-- | sysdeps/mach/mips/thread_state.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/mach/mips/thread_state.h b/sysdeps/mach/mips/thread_state.h index 541461fd85..f402c13273 100644 --- a/sysdeps/mach/mips/thread_state.h +++ b/sysdeps/mach/mips/thread_state.h @@ -28,3 +28,11 @@ Cambridge, MA 02139, USA. */ #define PC pc #define SP r29 + +struct machine_thread_all_state + { + int set; /* Mask of bits (1 << FLAVOR). */ + struct mips_thread_state basic; + struct mips_exc_state exc; + struct mips_float_state fpu; + }; |