From b4bae2b0c570d1ba167914f96ef6c50cae36aee3 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 20 Nov 2003 23:49:28 +0000 Subject: [PATCH] Argh! Followup to previous commit. I checked in the patch with an unintended local change. Change Xurthread back to curthread. --- sys/amd64/include/pcpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/include/pcpu.h b/sys/amd64/include/pcpu.h index b96221b473d..0694c766fc8 100644 --- a/sys/amd64/include/pcpu.h +++ b/sys/amd64/include/pcpu.h @@ -167,7 +167,7 @@ __curthread(void) __asm __volatile("movq %%gs:0,%0" : "=r" (td)); return (td); } -#define Xurthread (__curthread()) +#define curthread (__curthread()) #else #error gcc or lint is required to use this file