Convert gdb regs to ptrace regs.
void gdb_regs_to_pt_regs(unsigned long * gdb_regs, struct pt_regs * regs);
gdb_regs
A pointer to hold the registers we've received from GDB.
regs
A pointer to a struct pt_regs to hold these values in.
Convert the GDB regs in gdb_regs into the pt_regs, and store them in regs.
Jason Wessel <[email protected]>
Author.