1 /* Install given context.
2 Copyright (C) 2001-2018 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2001.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
22 #include "ucontext_i.h"
26 /* Load address of the context data structure. */
29 /* Get the current signal mask. Note that we preserve EBX in case
30 the system call fails and we return from the function with an
33 cfi_adjust_cfa_offset (4)
35 leal oSIGMASK(%eax), %ecx
36 movl $SIG_SETMASK, %ebx
37 cfi_rel_offset (ebx, 0)
38 movl $__NR_sigprocmask, %eax
41 cfi_adjust_cfa_offset (-4)
43 cmpl $-4095, %eax /* Check %eax for error. */
44 jae SYSCALL_ERROR_LABEL /* Jump to error handler if error. */
46 /* EAX was modified, reload it. */
49 /* Restore the floating-point context. Not the registers, only the
51 movl oFPREGS(%eax), %ecx
54 /* Restore the FS segment register. We don't touch the GS register
55 since it is used for threads. */
59 /* Fetch the address to return to. */
62 /* Load the new stack pointer. */
64 cfi_offset (edi, oEDI)
65 cfi_offset (esi, oESI)
66 cfi_offset (ebp, oEBP)
67 cfi_offset (ebx, oEBX)
68 cfi_offset (edx, oEDX)
69 cfi_offset (ecx, oECX)
72 /* Push the return address on the new stack so we can return there. */
75 /* Load the values of all the 32-bit registers (except ESP).
76 Since we are loading from EAX, it must be last. */
85 /* End FDE here, we fall into another context. */
89 /* The following 'ret' will pop the address of the code and jump
93 PSEUDO_END(__setcontext)
94 libc_hidden_def (__setcontext)
96 weak_alias (__setcontext, setcontext)