Go to the documentation of this file. 1 #ifndef __UM_PROCESSOR_H
2 #define __UM_PROCESSOR_H
8 # include "processor_32.h"
13 #define KSTK_EIP(tsk) KSTK_REG(tsk, HOST_IP)
14 #define KSTK_ESP(tsk) KSTK_REG(tsk, HOST_SP)
15 #define KSTK_EBP(tsk) KSTK_REG(tsk, HOST_BP)
17 #define ARCH_IS_STACKGROW(address) \
18 (address + 65536 + 32 * sizeof(unsigned long) >= UPT_SP(¤t->thread.regs.regs))
23 static inline void rep_nop(
void)
25 __asm__ __volatile__(
"rep;nop": : :
"memory");
28 #define cpu_relax() rep_nop()