diff options
Diffstat (limited to 'src/client/linux')
-rw-r--r-- | src/client/linux/dump_writer_common/thread_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/linux/dump_writer_common/thread_info.h b/src/client/linux/dump_writer_common/thread_info.h index a05ffea2..99093d2e 100644 --- a/src/client/linux/dump_writer_common/thread_info.h +++ b/src/client/linux/dump_writer_common/thread_info.h @@ -65,9 +65,9 @@ struct ThreadInfo { struct user_regs regs; struct user_fpregs fpregs; #elif defined(__aarch64__) - // Use the structures defined in <asm/ptrace.h> - struct user_pt_regs regs; - struct user_fpsimd_state fpregs; + // Use the structures defined in <sys/user.h> + struct user_regs_struct regs; + struct user_fpsimd_struct fpregs; #elif defined(__mips__) // Use the structure defined in <sys/ucontext.h>. mcontext_t mcontext; |