blob: 7858df7c2697fd197d1ed741509c22908cb8737b [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(sh64_r9)) {
5 tcp->u_rval = -1;
6 tcp->u_error = -sh64_r9;
7 } else {
8 tcp->u_rval = sh64_r9;
9 }
Dmitry V. Levind70d1c42015-03-22 22:13:55 +000010}