From 4ccabc355a6a189f3dbed08958cf8f1cd423b4f3 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 17 Sep 2002 06:22:51 +0000 Subject: 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(+) (limited to 'lib/libc') diff --git a/lib/libc/gen/swapcontext.c b/lib/libc/gen/swapcontext.c index eeb2f78..f6ba87f 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)) { -- cgit v1.1