update from main archive 960919
[glibc.git] / sysdeps / unix / sysv / linux / m68k / sysdep.S
blobb47e167159544551c16b29295f224eafaa90f851
1 /* Copyright (C) 1996 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA.  */
19 /* Because the Linux version is in fact m68k/ELF and the start.? file
20    for this system (sysdeps/m68k/elf/start.S) is also used by The Hurd
21    and therefore this files must not contain the definition of the
22    `errno' variable (I don't know why, ask Roland), we have to define
23    it somewhere else.
25    ...and this place is here.  */
26         .bss
27         .globl errno
28         .type errno,@object
29 errno:  .space 4
30         .size errno,4
31         .globl _errno
32         .type _errno,@object
33 _errno = errno  /* This name is expected by hj libc.so.5 startup code.  */
34         .text
36 /* The following code is only used in the shared library when we
37    compile the reentrant version.  Otherwise each system call defines
38    each own version.  */
40 #ifndef PIC
42 #include <sysdep.h>
43 #define _ERRNO_H
44 #include <errnos.h>
46 /* The syscall stubs jump here when they detect an error.  */
48 .globl __syscall_error
49 __syscall_error:
50         neg.l %d0
51         move.l %d0, errno
52 #ifdef _LIBC_REENTRANT
53         move.l %d0, -(%sp)
54         jbsr __errno_location
55         move.l (%sp)+, (%a0)
56 #endif
57         move.l #-1, %d0
58         /* Copy return value to %a0 for syscalls that are declared to
59            return a pointer.  */
60         move.l %d0, %a0
61         rts
62         .size   __syscall_error, . - __syscall_error
63 #endif /* PIC */
65         .globl  __errno_location
66         .type   __errno_location, @function
67 __errno_location:
68 #ifdef PIC
69         move.l  (%pc, errno@GOTPC), %a0
70 #else
71         lea     errno, %a0
72 #endif
73         rts
74         .size   __errno_location, . - __errno_location