diff options
author | peter <peter@FreeBSD.org> | 2002-09-17 07:41:30 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-09-17 07:41:30 +0000 |
commit | 2586a4ce958dc7f7e20b4b9fbb039972c25e4d17 (patch) | |
tree | 94c1d75c4ba36090334f1a6bb146b9c4961556e1 /sys | |
parent | 70885af57c8961e148c76377cd7376de2dbac0fc (diff) | |
download | FreeBSD-src-2586a4ce958dc7f7e20b4b9fbb039972c25e4d17.zip FreeBSD-src-2586a4ce958dc7f7e20b4b9fbb039972c25e4d17.tar.gz |
Argh. I've been reading makefiles for too long. Change comment to a
C-style comment.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/kern_kse.c | 12 | ||||
-rw-r--r-- | sys/kern/kern_thread.c | 12 |
2 files changed, 16 insertions, 8 deletions
diff --git a/sys/kern/kern_kse.c b/sys/kern/kern_kse.c index 08fd626..b5703cc 100644 --- a/sys/kern/kern_kse.c +++ b/sys/kern/kern_kse.c @@ -171,8 +171,10 @@ void thread_getcontext(struct thread *td, ucontext_t *uc) { -# XXX this is declared in a MD include file, i386/include/ucontext.h but -# is used in MI code. +/* + * XXX this is declared in a MD include file, i386/include/ucontext.h but + * is used in MI code. + */ #ifdef __i386__ get_mcontext(td, &uc->uc_mcontext); #endif @@ -189,8 +191,10 @@ thread_setcontext(struct thread *td, ucontext_t *uc) { int ret; -# XXX this is declared in a MD include file, i386/include/ucontext.h but -# is used in MI code. +/* + * XXX this is declared in a MD include file, i386/include/ucontext.h but + * is used in MI code. + */ #ifdef __i386__ ret = set_mcontext(td, &uc->uc_mcontext); #else diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index 08fd626..b5703cc 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -171,8 +171,10 @@ void thread_getcontext(struct thread *td, ucontext_t *uc) { -# XXX this is declared in a MD include file, i386/include/ucontext.h but -# is used in MI code. +/* + * XXX this is declared in a MD include file, i386/include/ucontext.h but + * is used in MI code. + */ #ifdef __i386__ get_mcontext(td, &uc->uc_mcontext); #endif @@ -189,8 +191,10 @@ thread_setcontext(struct thread *td, ucontext_t *uc) { int ret; -# XXX this is declared in a MD include file, i386/include/ucontext.h but -# is used in MI code. +/* + * XXX this is declared in a MD include file, i386/include/ucontext.h but + * is used in MI code. + */ #ifdef __i386__ ret = set_mcontext(td, &uc->uc_mcontext); #else |