From 6064ca520ae5f646d2fa62dc42f7538be3698a06 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 17 Sep 2002 06:22:51 +0000 Subject: [PATCH] Bandaid to stop failing on non-i386 platforms. Add a big ugly #warning as a reminder. --- lib/libc/gen/swapcontext.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/libc/gen/swapcontext.c b/lib/libc/gen/swapcontext.c index eeb2f782a3f..f6ba87fc0db 100644 --- a/lib/libc/gen/swapcontext.c +++ b/lib/libc/gen/swapcontext.c @@ -36,11 +36,15 @@ __FBSDID("$FreeBSD$"); __weak_reference(__swapcontext, swapcontext); +#warning "FIX __swapcontext on non i386 please!" + int __swapcontext(ucontext_t *oucp, const ucontext_t *ucp) { int ret; +#ifdef __i386__ + /* XXX PLEASE FIX! XXX */ if ((oucp == NULL) || (oucp->uc_mcontext.mc_len != sizeof(mcontext_t)) || (ucp == NULL) || @@ -48,6 +52,7 @@ __swapcontext(ucontext_t *oucp, const ucontext_t *ucp) errno = EINVAL; return (-1); } +#endif oucp->uc_flags &= ~UCF_SWAPPED; ret = getcontext(oucp); if ((ret == 0) && !(oucp->uc_flags & UCF_SWAPPED)) {