blob: 158ff9e6ce48f9b15d83d92cf63704a6dd64aeed [file] [log] [blame]
Dmitry V. Levin0c8c5c92015-11-29 00:06:45 +00001static void
2get_error(struct tcb *tcp, const bool check_errno)
3{
4 if (check_errno && is_negated_errno(sh_r0)) {
5 tcp->u_rval = -1;
6 tcp->u_error = -sh_r0;
7 } else {
8 tcp->u_rval = sh_r0;
9 }
Dmitry V. Levind70d1c42015-03-22 22:13:55 +000010}