From: Dave A. <ai...@us...> - 2003-02-23 23:56:25
|
Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax In directory sc8-pr-cvs1:/tmp/cvs-serv27174 Modified Files: ptrace.h Log Message: DA: user_regs_struct is a struct so no typdefing here Index: ptrace.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/ptrace.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ptrace.h 28 Oct 2001 23:55:36 -0000 1.4 +++ ptrace.h 23 Feb 2003 23:56:21 -0000 1.5 @@ -46,10 +46,30 @@ struct psl_fields psl; }; +struct user_regs_struct { + unsigned long int r0; + unsigned long int r1; + unsigned long int r2; + unsigned long int r3; + unsigned long int r4; + unsigned long int r5; + unsigned long int r6; + unsigned long int r7; + unsigned long int r8; + unsigned long int r9; + unsigned long int r10; + unsigned long int r11; /* note: we keep current in r11 */ + unsigned long int ap; + unsigned long int fp; + unsigned long int sp; + unsigned long int pc; + struct psl_fields psl; +}; + /* ok, this may need a FIXME: later. user_regs_struct is the * regs structure expected by userspace. see comment in asm-i386/user.h */ -typedef struct pt_regs user_regs_struct; +//typedef struct pt_regs user_regs_struct; /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */ #define PTRACE_GETREGS 12 |