File: get_error.c

package info (click to toggle)
strace 4.15-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 22,752 kB
  • ctags: 9,462
  • sloc: ansic: 62,976; sh: 7,256; makefile: 3,551; perl: 352; awk: 343; lisp: 44; sed: 6
file content (10 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
static void
get_error(struct tcb *tcp, const bool check_errno)
{
	if (check_errno && is_negated_errno(sh64_r9)) {
		tcp->u_rval = -1;
		tcp->u_error = -sh64_r9;
	} else {
		tcp->u_rval = sh64_r9;
	}
}