Home | History | Annotate | Download | only in i386
      1 static void
      2 get_error(struct tcb *tcp, const bool check_errno)
      3 {
      4 	if (check_errno && is_negated_errno(i386_regs.eax)) {
      5 		tcp->u_rval = -1;
      6 		tcp->u_error = -i386_regs.eax;
      7 	} else {
      8 		tcp->u_rval = i386_regs.eax;
      9 	}
     10 }
     11