1 #include "negated_errno.h" 2 3 static void get_error(struct tcb * tcp,const bool check_errno)4 get_error(struct tcb *tcp, const bool check_errno) 5 { 6 if (ia64_regs.gr[10]) { 7 tcp->u_rval = -1; 8 tcp->u_error = ia64_regs.gr[8]; 9 } else { 10 tcp->u_rval = ia64_regs.gr[8]; 11 } 12 } 13