kernel/arch/x86/um/asm/processor_64.h
.. .. @@ -31,9 +31,6 @@ 31 31 to->fs = from->fs; 32 32 } 33 33 34 -#define current_text_addr() \35 - ({ void *pc; __asm__("movq $1f,%0\n1:":"=g" (pc)); pc; })36 -37 34 #define current_sp() ({ void *sp; __asm__("movq %%rsp, %0" : "=r" (sp) : ); sp; }) 38 35 #define current_bp() ({ unsigned long bp; __asm__("movq %%rbp, %0" : "=r" (bp) : ); bp; }) 39 36