]> git.ipfire.org Git - thirdparty/glibc.git/blame - ports/sysdeps/unix/sysv/linux/mips/bits/errno.h
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / ports / sysdeps / unix / sysv / linux / mips / bits / errno.h
CommitLineData
7e5a3fd8 1/* Error constants. MIPS/Linux specific version.
d4697bc9 2 Copyright (C) 1996-2014 Free Software Foundation, Inc.
7e5a3fd8
UD
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
3214b89b
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.
7e5a3fd8
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
3214b89b 13 Lesser General Public License for more details.
7e5a3fd8 14
3214b89b 15 You should have received a copy of the GNU Lesser General Public
ab84e3ff
PE
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
7e5a3fd8
UD
18
19#ifdef _ERRNO_H
20
21# undef EDOM
22# undef EILSEQ
23# undef ERANGE
24# include <linux/errno.h>
25
26/* Linux has no ENOTSUP error code. */
27# define ENOTSUP EOPNOTSUPP
28
8f5c49a5
RM
29# ifndef ECANCELED
30# define ECANCELED 158
31# endif
32
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
38
87d2bea0
JM
39# ifndef ERFKILL
40# define ERFKILL 167
41# endif
42
d6353c0f
AS
43# ifndef EHWPOISON
44# define EHWPOISON 168
45# endif
46
7e5a3fd8 47# ifndef __ASSEMBLER__
7e5a3fd8 48/* Function to get address of global `errno' variable. */
93b2a8e7 49extern int *__errno_location (void) __THROW __attribute__ ((__const__));
7e5a3fd8 50
7e5a3fd8
UD
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 */
57
58#if !defined _ERRNO_H && defined __need_Emath
59/* This is ugly but the kernel header is not clean enough. We must
1a839cb1
UD
60 define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is
61 defined. */
7e5a3fd8 62# define EDOM 33 /* Math argument out of domain of function. */
9cc31184 63# define EILSEQ 88 /* Illegal byte sequence. */
7e5a3fd8
UD
64# define ERANGE 34 /* Math result not representable. */
65#endif /* !_ERRNO_H && __need_Emath */