2006-11-22 15:13:11 +00:00
|
|
|
/* Save current context and jump to a new context.
|
2018-01-01 00:32:25 +00:00
|
|
|
Copyright (C) 2002-2018 Free Software Foundation, Inc.
|
2006-11-22 15:13:11 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2006-11-22 15:13:11 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
#include <rtld-global-offsets.h>
|
|
|
|
#include <shlib-compat.h>
|
|
|
|
|
|
|
|
#define __ASSEMBLY__
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include "ucontext_i.h"
|
|
|
|
|
2013-10-04 15:55:15 +00:00
|
|
|
#include <context-e500.h>
|
|
|
|
|
2006-11-22 15:13:11 +00:00
|
|
|
#define __CONTEXT_FUNC_NAME __swapcontext
|
|
|
|
#undef __CONTEXT_ENABLE_FPRS
|
|
|
|
#undef __CONTEXT_ENABLE_VRS
|
|
|
|
|
|
|
|
# include "swapcontext-common.S"
|
|
|
|
|
|
|
|
versioned_symbol (libc, __swapcontext, swapcontext, GLIBC_2_3_4)
|
|
|
|
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_3_3, GLIBC_2_3_4)
|
|
|
|
|
2013-06-05 20:26:40 +00:00
|
|
|
/* For the nofpu case the old/new versions are the same function. */
|
2006-11-22 15:13:11 +00:00
|
|
|
strong_alias (__swapcontext, __novec_swapcontext)
|
|
|
|
|
|
|
|
compat_symbol (libc, __novec_swapcontext, swapcontext, GLIBC_2_3_3)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_3_3)
|
|
|
|
|
|
|
|
#define _ERRNO_H 1
|
|
|
|
#include <bits/errno.h>
|
|
|
|
|
|
|
|
compat_text_section
|
|
|
|
ENTRY (__swapcontext_stub)
|
|
|
|
li r3,ENOSYS
|
|
|
|
b __syscall_error@local
|
|
|
|
END (__swapcontext_stub)
|
|
|
|
.previous
|
|
|
|
|
|
|
|
compat_symbol (libc, __swapcontext_stub, swapcontext, GLIBC_2_1)
|
|
|
|
|
|
|
|
#endif
|