fix a register name
R=gri
OCL=13548
CL=13548
prints("\n\n");
traceback((void *)sc->rip, (void *)sc->rsp, (void *)sc->r15);
- tracebackothers((void*)sc->__r15);
+ tracebackothers((void*)sc->r15);
print_sigcontext(sc);
sys·breakpoint();
package syscall
/*
- * These calls have signatures that are independent of operating system.
- *
- * For simplicity of addressing in assembler, all integers are 64 bits
- * in these calling sequences (although it complicates some, such as pipe)
+ * Foundation of system call interface.
*/
func Syscall(trap int64, a1, a2, a3 int64) (r1, r2, err int64);