diff options
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; + }; |