]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/hppa/bits/errno.h
Update.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / hppa / bits / errno.h
CommitLineData
b15cb495
UD
1/* Error constants. Linux/HPPA specific version.
2 Copyright (C) 1996, 1997, 1998, 1999, 2000 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
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.
b15cb495
UD
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.
b15cb495 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
b15cb495
UD
19
20#ifdef _ERRNO_H
21
22# undef EDOM
23# undef EILSEQ
24# undef ERANGE
25# include <linux/errno.h>
26
27/* Linux also has no ECANCELED error code. Since it is not used here
28 we define it to an invalid value. */
29# define ECANCELED 125
30
31# ifndef __ASSEMBLER__
b15cb495
UD
32/* Function to get address of global `errno' variable. */
33extern int *__errno_location (void) __THROW __attribute__ ((__const__));
34
b15cb495
UD
35# if !defined _LIBC || defined _LIBC_REENTRANT
36/* When using threads, errno is a per-thread value. */
37# define errno (*__errno_location ())
38# endif
39# endif /* !__ASSEMBLER__ */
40#endif /* _ERRNO_H */
41
42#if !defined _ERRNO_H && defined __need_Emath
43/* This is ugly but the kernel header is not clean enough. We must
44 define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
45 defined. */
46# define EDOM 33 /* Math argument out of domain of function. */
47# define EILSEQ 84 /* Illegal byte sequence. */
48# define ERANGE 34 /* Math result not representable. */
49#endif /* !_ERRNO_H && __need_Emath */