]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / s390 / s390-32 / sysdep.S
CommitLineData
b168057a 1/* Copyright (C) 2000-2015 Free Software Foundation, Inc.
847b055c
AJ
2 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
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
41bdb6e2
AJ
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.
847b055c
AJ
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
41bdb6e2 13 Lesser General Public License for more details.
847b055c 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
847b055c
AJ
18
19#include <sysdep.h>
f8ea3acb 20#include <tls.h>
847b055c 21
847b055c
AJ
22/* The following code is only used in the shared library when we
23 compile the reentrant version. Otherwise each system call defines
24 each own version. */
25
26/* The syscall stubs jump here when they detect an error. */
27
28#undef CALL_MCOUNT
29#define CALL_MCOUNT
30
31 .text
32ENTRY(__syscall_error)
33#ifndef PIC
4f41c682 34# if IS_IN (libc)
d063d164
UD
35# define SYSCALL_ERROR_ERRNO __libc_errno
36# else
37# define SYSCALL_ERROR_ERRNO errno
38# endif
e6ebd2e4
UD
39 basr %r1,0
400: l %r1,1f-0b(%r1)
41 ear %r3,%a0
42 lcr %r2,%r2
43 st %r2,0(%r1,%r3)
44 lhi %r2,-1
45 br %r14
461: .long SYSCALL_ERROR_ERRNO@ntpoff
847b055c 47#else
e6ebd2e4
UD
48# if RTLD_PRIVATE_ERRNO
49 basr %r1,0
500: al %r1,1f-0b(%r1)
51 lcr %r2,%r2
52 st %r2,0(%r1)
53 lhi %r2,-1
54 br %r14
96c82b3f 551: .long rtld_errno - 0b
d063d164 56# else
4f41c682 57# if IS_IN (libc)
e6ebd2e4
UD
58# define SYSCALL_ERROR_ERRNO __libc_errno
59# else
60# define SYSCALL_ERROR_ERRNO errno
61# endif
62 basr %r1,0
630: al %r1,1f-0b(%r1)
64 ear %r3,%a0
65 l %r1,SYSCALL_ERROR_ERRNO@gotntpoff(%r1)
66 lcr %r2,%r2
67 st %r2,0(%r1,%r3)
68 lhi %r2,-1
69 br %r14
701: .long _GLOBAL_OFFSET_TABLE_-0b
e6ebd2e4 71# endif
847b055c
AJ
72#endif
73
74END (__syscall_error)