Update copyright notices with scripts/update-copyrights
[glibc.git] / ports / sysdeps / unix / sysv / linux / mips / bits / errno.h
blob95f1aebee1a3206d90563304c7437f34db9e5d6c
1 /* Error constants. MIPS/Linux specific version.
2 Copyright (C) 1996-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
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 <http://www.gnu.org/licenses/>. */
19 #ifdef _ERRNO_H
21 # undef EDOM
22 # undef EILSEQ
23 # undef ERANGE
24 # include <linux/errno.h>
26 /* Linux has no ENOTSUP error code. */
27 # define ENOTSUP EOPNOTSUPP
29 # ifndef ECANCELED
30 # define ECANCELED 158
31 # endif
33 /* Support for error codes to support robust mutexes was added later, too. */
34 # ifndef EOWNERDEAD
35 # define EOWNERDEAD 165
36 # define ENOTRECOVERABLE 166
37 # endif
39 # ifndef ERFKILL
40 # define ERFKILL 167
41 # endif
43 # ifndef EHWPOISON
44 # define EHWPOISON 168
45 # endif
47 # ifndef __ASSEMBLER__
48 /* Function to get address of global `errno' variable. */
49 extern int *__errno_location (void) __THROW __attribute__ ((__const__));
51 # if !defined _LIBC || defined _LIBC_REENTRANT
52 /* When using threads, errno is a per-thread value. */
53 # define errno (*__errno_location ())
54 # endif
55 # endif /* !__ASSEMBLER__ */
56 #endif /* _ERRNO_H */
58 #if !defined _ERRNO_H && defined __need_Emath
59 /* This is ugly but the kernel header is not clean enough. We must
60 define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
61 defined. */
62 # define EDOM 33 /* Math argument out of domain of function. */
63 # define EILSEQ 88 /* Illegal byte sequence. */
64 # define ERANGE 34 /* Math result not representable. */
65 #endif /* !_ERRNO_H && __need_Emath */