(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
[glibc.git] / sysdeps / unix / bsd / m68k / sysdep.S
blob90f35c9bcc5ad7a3d40fb3b30dc4ccea4b4f2b75
1 /* Copyright (C) 1991, 1992, 1993, 1994, 1997 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 Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the 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    Lesser General Public License for more details.
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
19 #define _ERRNO_H
20 #include <bits/errno.h>
22 .globl syscall_error
23 syscall_error:
24         /* We translate the system's EWOULDBLOCK error into EAGAIN.
25            The GNU C library always defines EWOULDBLOCK==EAGAIN.
26            EWOULDBLOCK_sys is the original number.  */
27 #ifdef __motorola__
28 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
29         cmp.l #EWOULDBLOCK_sys, d0
30         bne store
31         moveq.l #EAGAIN, d0
32 #endif
33 store:  move.l d0, _errno
34         moveq.l #-1, d0
35 #else
36 #if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN
37         cmpl #EWOULDBLOCK_sys, d0
38         bne store
39         moveq #EAGAIN, d0
40 #endif
41 store:  movel d0, _errno
42         moveq #-1, d0
43 #endif
44         rts