| 1 | /* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. PowerPC32/64 version. |
| 2 | Copyright (C) 1994-2024 Free Software Foundation, Inc. |
| 3 | This file is part of the GNU C Library. |
| 4 | |
| 5 | The GNU C Library is free software; you can redistribute it and/or |
| 6 | modify it under the terms of the GNU Lesser General Public |
| 7 | License as published by the Free Software Foundation; either |
| 8 | version 2.1 of the License, or (at your option) any later version. |
| 9 | |
| 10 | The GNU C Library is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | Lesser General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU Lesser General Public |
| 16 | License along with the GNU C Library; if not, see |
| 17 | <https://www.gnu.org/licenses/>. */ |
| 18 | #include <shlib-compat.h> |
| 19 | #include <libc-symbols.h> |
| 20 | #include <sysdep.h> |
| 21 | |
| 22 | #if defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3_4) |
| 23 | |
| 24 | ENTRY (__novmxsetjmp) |
| 25 | li r4,1 /* Set second argument to 1. */ |
| 26 | b __novmx__sigsetjmp@local |
| 27 | END (__novmxsetjmp) |
| 28 | strong_alias (__novmxsetjmp, __novmx__setjmp) |
| 29 | compat_symbol (libc, __novmxsetjmp, setjmp, GLIBC_2_0) |
| 30 | |
| 31 | #endif /* defined SHARED && SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_3_4) ) */ |
| 32 | |
| 33 | ENTRY (__vmxsetjmp) |
| 34 | li r4,1 /* Set second argument to 1. */ |
| 35 | b __vmx__sigsetjmp@local |
| 36 | END (__vmxsetjmp) |
| 37 | strong_alias (__vmxsetjmp, __vmx__setjmp) |
| 38 | strong_alias (__vmx__setjmp, __setjmp) |
| 39 | versioned_symbol (libc, __vmxsetjmp, setjmp, GLIBC_2_3_4) |
| 40 | |