LCOV - code coverage report
Current view: top level - strace_git/linux/x86_64 - set_error.c (source / functions) Hit Total Coverage
Test: strace-4.16.0.69.f1ea-dirty Code Coverage Lines: 6 6 100.0 %
Date: 2017-03-18 00:38:52 Functions: 2 2 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : #ifndef HAVE_GETREGS_OLD
       2                 :            : # define arch_set_error i386_set_error
       3                 :            : # define arch_set_success i386_set_success
       4                 :            : # include "i386/set_error.c"
       5                 :            : # undef arch_set_success
       6                 :            : # undef arch_set_error
       7                 :            : #endif /* !HAVE_GETREGS_OLD */
       8                 :            : 
       9                 :            : static int
      10                 :       5463 : arch_set_error(struct tcb *tcp)
      11                 :            : {
      12                 :            : #ifdef HAVE_GETREGS_OLD
      13                 :       5463 :         x86_64_regs.rax = - (long long) tcp->u_error;
      14                 :       5463 :         return upoke(tcp->pid, 8 * RAX, x86_64_regs.rax);
      15                 :            : #else
      16                 :            :         if (x86_io.iov_len == sizeof(i386_regs))
      17                 :            :                 return i386_set_error(tcp);
      18                 :            : 
      19                 :            :         x86_64_regs.rax = - (long long) tcp->u_error;
      20                 :            :         return set_regs(tcp->pid);
      21                 :            : #endif
      22                 :            : }
      23                 :            : 
      24                 :            : static int
      25                 :         10 : arch_set_success(struct tcb *tcp)
      26                 :            : {
      27                 :            : #ifdef HAVE_GETREGS_OLD
      28                 :         10 :         x86_64_regs.rax = (long long) tcp->u_rval;
      29                 :         10 :         return upoke(tcp->pid, 8 * RAX, x86_64_regs.rax);
      30                 :            : #else
      31                 :            :         if (x86_io.iov_len == sizeof(i386_regs))
      32                 :            :                 return i386_set_success(tcp);
      33                 :            : 
      34                 :            :         x86_64_regs.rax = (long long) tcp->u_rval;
      35                 :            :         return set_regs(tcp->pid);
      36                 :            : #endif
      37                 :            : }

Generated by: LCOV version 1.12