Argh. I've been reading makefiles for too long. Change comment to a

C-style comment.
This commit is contained in:
peter 2002-09-17 07:41:30 +00:00
parent 70885af57c
commit 2586a4ce95
2 changed files with 16 additions and 8 deletions

View File

@ -171,8 +171,10 @@ void
thread_getcontext(struct thread *td, ucontext_t *uc) 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__ #ifdef __i386__
get_mcontext(td, &uc->uc_mcontext); get_mcontext(td, &uc->uc_mcontext);
#endif #endif
@ -189,8 +191,10 @@ thread_setcontext(struct thread *td, ucontext_t *uc)
{ {
int ret; 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__ #ifdef __i386__
ret = set_mcontext(td, &uc->uc_mcontext); ret = set_mcontext(td, &uc->uc_mcontext);
#else #else

View File

@ -171,8 +171,10 @@ void
thread_getcontext(struct thread *td, ucontext_t *uc) 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__ #ifdef __i386__
get_mcontext(td, &uc->uc_mcontext); get_mcontext(td, &uc->uc_mcontext);
#endif #endif
@ -189,8 +191,10 @@ thread_setcontext(struct thread *td, ucontext_t *uc)
{ {
int ret; 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__ #ifdef __i386__
ret = set_mcontext(td, &uc->uc_mcontext); ret = set_mcontext(td, &uc->uc_mcontext);
#else #else