Blame setjmp/longjmp.c

Packit Service 82fcde
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <stddef.h>
Packit Service 82fcde
#include <setjmpP.h>
Packit Service 82fcde
#include <signal.h>
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
/* Set the signal mask to the one specified in ENV, and jump
Packit Service 82fcde
   to the position specified in ENV, causing the setjmp
Packit Service 82fcde
   call there to return VAL, or 1 if VAL is 0.  */
Packit Service 82fcde
void
Packit Service 82fcde
__libc_siglongjmp (sigjmp_buf env, int val)
Packit Service 82fcde
{
Packit Service 82fcde
  /* Perform any cleanups needed by the frames being unwound.  */
Packit Service 82fcde
  _longjmp_unwind (env, val);
Packit Service 82fcde
Packit Service 82fcde
  if (env[0].__mask_was_saved)
Packit Service 82fcde
    /* Restore the saved signal mask.  */
Packit Service 82fcde
    (void) __sigprocmask (SIG_SETMASK,
Packit Service 82fcde
			  (sigset_t *) &env[0].__saved_mask,
Packit Service 82fcde
			  (sigset_t *) NULL);
Packit Service 82fcde
Packit Service 82fcde
  /* Call the machine-dependent function to restore machine state.  */
Packit Service 82fcde
  __longjmp (env[0].__jmpbuf, val ?: 1);
Packit Service 82fcde
}
Packit Service 82fcde
Packit Service 82fcde
#ifndef __libc_siglongjmp
Packit Service 82fcde
# ifndef __libc_longjmp
Packit Service 82fcde
/* __libc_longjmp is a private interface for cancellation implementation
Packit Service 82fcde
   in libpthread.  */
Packit Service 82fcde
strong_alias (__libc_siglongjmp, __libc_longjmp)
Packit Service 82fcde
# endif
Packit Service 82fcde
weak_alias (__libc_siglongjmp, _longjmp)
Packit Service 82fcde
weak_alias (__libc_siglongjmp, longjmp)
Packit Service 82fcde
weak_alias (__libc_siglongjmp, siglongjmp)
Packit Service 82fcde
#endif