From 5a248c0d4e17dc7280f0349206a55de766f27469 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 5 Dec 2005 22:28:52 +0000 Subject: [PATCH] Doc fix. --- include/lwp.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/lwp.h b/include/lwp.h index 9ea86b01..146adf25 100644 --- a/include/lwp.h +++ b/include/lwp.h @@ -24,9 +24,9 @@ #define _LWP_H_ #ifdef UCONTEXT #include -#else /* UCONTEXT */ +#else /* !UCONTEXT */ #include -#endif /* UCONTEXT */ +#endif /* !UCONTEXT */ #include #include "misc.h" #define LWP_STACKCHECK 0x1 @@ -36,9 +36,9 @@ struct lwpProc { #ifdef UCONTEXT ucontext_t context; /* context structure */ -#else /* UCONTEXT */ +#else /* !UCONTEXT */ jmp_buf context; /* processor context area */ -#endif /* UCONTEXT */ +#endif /* !UCONTEXT */ void *sbtm; /* bottom of stack attached to it */ int size; /* size of stack */ void (*entry)(void *); /* entry point */