diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2001-09-18 21:52:15 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2001-09-18 21:52:15 +0000 |
| commit | fdca1cb1effd78819605dd6693b627228b30ca0f (patch) | |
| tree | 5e1289b17ef1f5f667e81c14f1bbee334f95c15e | |
| parent | fd54558a83f0f494ed0d7d45c4c023bcfb826f18 (diff) | |
Notes
| -rw-r--r-- | sys/i386/include/globals.h | 4 | ||||
| -rw-r--r-- | sys/ia64/include/globals.h | 4 | ||||
| -rw-r--r-- | sys/powerpc/include/globals.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/i386/include/globals.h b/sys/i386/include/globals.h index c3cc2114f2ae..f0d6a65aaa20 100644 --- a/sys/i386/include/globals.h +++ b/sys/i386/include/globals.h @@ -131,8 +131,8 @@ #define GLOBALDATA PCPU_GET(prvspace) #define curthread PCPU_GET(curthread) -#define CURPROC (curthread->td_proc) -#define curproc (curthread->td_proc) +#define CURPROC (curthread->td_proc) +#define curproc (curthread->td_proc) #define curksegrp (curthread->td_ksegrp) #define curkse (curthread->td_kse) diff --git a/sys/ia64/include/globals.h b/sys/ia64/include/globals.h index b953cf179376..366d89bc6c23 100644 --- a/sys/ia64/include/globals.h +++ b/sys/ia64/include/globals.h @@ -41,8 +41,8 @@ register struct globaldata *globalp __asm__("r13"); #define PCPU_SET(member,value) (GLOBALP->gd_ ## member = (value)) #define curthread PCPU_GET(curthread) -#define CURPROC (curthread->td_proc) -#define curproc (curthread->td_proc) +#define CURPROC (curthread->td_proc) +#define curproc (curthread->td_proc) #define curksegrp (curthread->td_ksegrp) #define curkse (curthread->td_kse) diff --git a/sys/powerpc/include/globals.h b/sys/powerpc/include/globals.h index 6aa1a7a175ba..b2fe865f4424 100644 --- a/sys/powerpc/include/globals.h +++ b/sys/powerpc/include/globals.h @@ -46,8 +46,8 @@ * portability between UP and SMP kernels. */ #define curthread PCPU_GET(curthread) -#define CURPROC (curthread->td_proc) -#define curproc (curthread->td_proc) +#define CURPROC (curthread->td_proc) +#define curproc (curthread->td_proc) #define curksegrp (curthread->td_ksegrp) #define curkse (curthread->td_kse) |
