[BACK]Return to cpu.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / i386 / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/arch/i386/include/cpu.h between version 1.179 and 1.179.4.1

version 1.179, 2017/09/17 09:41:35 version 1.179.4.1, 2019/06/10 22:06:20
Line 81  cpu_set_curpri(int pri)
Line 81  cpu_set_curpri(int pri)
 }  }
 #endif  #endif
   
   #ifdef XENPV
   #define CLKF_USERMODE(frame)    (curcpu()->ci_xen_clockf_usermode)
   #define CLKF_PC(frame)          (curcpu()->ci_xen_clockf_pc)
   #else /* XENPV */
 #define CLKF_USERMODE(frame)    USERMODE((frame)->cf_if.if_cs)  #define CLKF_USERMODE(frame)    USERMODE((frame)->cf_if.if_cs)
 #define CLKF_PC(frame)          ((frame)->cf_if.if_eip)  #define CLKF_PC(frame)          ((frame)->cf_if.if_eip)
   #endif /* XENPV */
 #define CLKF_INTR(frame)        (curcpu()->ci_idepth > 0)  #define CLKF_INTR(frame)        (curcpu()->ci_idepth > 0)
 #define LWP_PC(l)               ((l)->l_md.md_regs->tf_eip)  #define LWP_PC(l)               ((l)->l_md.md_regs->tf_eip)
   

Legend:
Removed from v.1.179  
changed lines
  Added in v.1.179.4.1

CVSweb <webmaster@jp.NetBSD.org>