Home | History | Annotate | Line # | Download | only in m68k
linux_errno.h revision 1.1.8.1
      1  1.1.8.1  bouyer /* 	$NetBSD: linux_errno.h,v 1.1.8.1 2001/03/12 13:29:52 bouyer Exp $	*/
      2      1.1   itohy 
      3      1.1   itohy /*-
      4      1.1   itohy  * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
      5      1.1   itohy  * All rights reserved.
      6      1.1   itohy  *
      7      1.1   itohy  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1   itohy  * by Frank van der Linden and Eric Haszlakiewicz.
      9      1.1   itohy  *
     10      1.1   itohy  * Redistribution and use in source and binary forms, with or without
     11      1.1   itohy  * modification, are permitted provided that the following conditions
     12      1.1   itohy  * are met:
     13      1.1   itohy  * 1. Redistributions of source code must retain the above copyright
     14      1.1   itohy  *    notice, this list of conditions and the following disclaimer.
     15      1.1   itohy  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1   itohy  *    notice, this list of conditions and the following disclaimer in the
     17      1.1   itohy  *    documentation and/or other materials provided with the distribution.
     18      1.1   itohy  * 3. All advertising materials mentioning features or use of this software
     19      1.1   itohy  *    must display the following acknowledgement:
     20      1.1   itohy  *	This product includes software developed by the NetBSD
     21      1.1   itohy  *	Foundation, Inc. and its contributors.
     22      1.1   itohy  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1   itohy  *    contributors may be used to endorse or promote products derived
     24      1.1   itohy  *    from this software without specific prior written permission.
     25      1.1   itohy  *
     26      1.1   itohy  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1   itohy  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1   itohy  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1   itohy  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1   itohy  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1   itohy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1   itohy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1   itohy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1   itohy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1   itohy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1   itohy  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1   itohy  */
     38      1.1   itohy 
     39      1.1   itohy #ifndef _M68K_LINUX_ERRNO_H
     40      1.1   itohy #define _M68K_LINUX_ERRNO_H
     41  1.1.8.1  bouyer 
     42  1.1.8.1  bouyer /*
     43  1.1.8.1  bouyer  * Linux/m68k returns negative errors to userland
     44  1.1.8.1  bouyer  * The libc makes the errno positive.
     45  1.1.8.1  bouyer  */
     46  1.1.8.1  bouyer #define LINUX_SCERR_SIGN -
     47      1.1   itohy 
     48      1.1   itohy /* Use common/linux_errno.h for #1-35 */
     49      1.1   itohy 
     50      1.1   itohy #define LINUX_ENAMETOOLONG	36
     51      1.1   itohy #define LINUX_ENOLCK		37
     52      1.1   itohy #define LINUX_ENOSYS		38
     53      1.1   itohy #define LINUX_ENOTEMPTY		39
     54      1.1   itohy #define LINUX_ELOOP		40
     55      1.1   itohy #define	LINUX_EWOULDBLOCK	LINUX_EAGAIN
     56      1.1   itohy #define LINUX_ENOMSG		42
     57      1.1   itohy #define LINUX_EIDRM		43
     58      1.1   itohy #define LINUX_ECHRNG		44
     59      1.1   itohy #define LINUX_EL2NSYNC		45
     60      1.1   itohy #define LINUX_EL3HLT		46
     61      1.1   itohy #define LINUX_EL3RST		47
     62      1.1   itohy #define LINUX_ELNRNG		48
     63      1.1   itohy #define LINUX_EUNATCH		49
     64      1.1   itohy #define LINUX_ENOCSI		50
     65      1.1   itohy #define LINUX_EL2HLT		51
     66      1.1   itohy #define LINUX_EBADE		52
     67      1.1   itohy #define LINUX_EBADR		53
     68      1.1   itohy #define LINUX_EXFULL		54
     69      1.1   itohy #define LINUX_ENOANO		55
     70      1.1   itohy #define LINUX_EBADRQC		56
     71      1.1   itohy #define LINUX_EBADSLT		57
     72      1.1   itohy #define	LINUX_EDEADLOCK		LINUX_EDEADLK
     73      1.1   itohy #define LINUX_EBFONT		59
     74      1.1   itohy #define LINUX_ENOSTR		60
     75      1.1   itohy #define LINUX_ENODATA		61
     76      1.1   itohy #define LINUX_ETIME		62
     77      1.1   itohy #define LINUX_ENOSR		63
     78      1.1   itohy #define LINUX_ENONET		64
     79      1.1   itohy #define LINUX_ENOPKG		65
     80      1.1   itohy #define LINUX_EREMOTE		66
     81      1.1   itohy #define LINUX_ENOLINK		67
     82      1.1   itohy #define LINUX_EADV		68
     83      1.1   itohy #define LINUX_ESRMNT		69
     84      1.1   itohy #define LINUX_ECOMM		70
     85      1.1   itohy #define LINUX_EPROTO		71
     86      1.1   itohy #define LINUX_EMULTIHOP		72
     87      1.1   itohy #define LINUX_EDOTDOT		73
     88      1.1   itohy #define LINUX_EBADMSG		74
     89      1.1   itohy #define LINUX_EOVERFLOW		75
     90      1.1   itohy #define LINUX_ENOTUNIQ		76
     91      1.1   itohy #define LINUX_EBADFD		77
     92      1.1   itohy #define LINUX_EREMCHG		78
     93      1.1   itohy #define LINUX_ELIBACC		79
     94      1.1   itohy #define LINUX_ELIBBAD		80
     95      1.1   itohy #define LINUX_ELIBSCN		81
     96      1.1   itohy #define LINUX_ELIBMAX		82
     97      1.1   itohy #define LINUX_ELIBEXEC		83
     98      1.1   itohy #define LINUX_EILSEQ		84
     99      1.1   itohy #define LINUX_ERESTART		85
    100      1.1   itohy #define LINUX_ESTRPIPE		86
    101      1.1   itohy #define LINUX_EUSERS		87
    102      1.1   itohy #define LINUX_ENOTSOCK		88
    103      1.1   itohy #define LINUX_EDESTADDRREQ	89
    104      1.1   itohy #define LINUX_EMSGSIZE		90
    105      1.1   itohy #define LINUX_EPROTOTYPE	91
    106      1.1   itohy #define LINUX_ENOPROTOOPT	92
    107      1.1   itohy #define LINUX_EPROTONOSUPPORT	93
    108      1.1   itohy #define LINUX_ESOCKTNOSUPPORT	94
    109      1.1   itohy #define LINUX_EOPNOTSUPP	95
    110      1.1   itohy #define LINUX_EPFNOSUPPORT	96
    111      1.1   itohy #define LINUX_EAFNOSUPPORT	97
    112      1.1   itohy #define LINUX_EADDRINUSE	98
    113      1.1   itohy #define LINUX_EADDRNOTAVAIL	99
    114      1.1   itohy #define LINUX_ENETDOWN		100
    115      1.1   itohy #define LINUX_ENETUNREACH	101
    116      1.1   itohy #define LINUX_ENETRESET		102
    117      1.1   itohy #define LINUX_ECONNABORTED	103
    118      1.1   itohy #define LINUX_ECONNRESET	104
    119      1.1   itohy #define LINUX_ENOBUFS		105
    120      1.1   itohy #define LINUX_EISCONN		106
    121      1.1   itohy #define LINUX_ENOTCONN		107
    122      1.1   itohy #define LINUX_ESHUTDOWN		108
    123      1.1   itohy #define LINUX_ETOOMANYREFS	109
    124      1.1   itohy #define LINUX_ETIMEDOUT		110
    125      1.1   itohy #define LINUX_ECONNREFUSED	111
    126      1.1   itohy #define LINUX_EHOSTDOWN		112
    127      1.1   itohy #define LINUX_EHOSTUNREACH	113
    128      1.1   itohy #define LINUX_EALREADY		114
    129      1.1   itohy #define LINUX_EINPROGRESS	115
    130      1.1   itohy #define LINUX_ESTALE		116
    131      1.1   itohy #define LINUX_EUCLEAN		117
    132      1.1   itohy #define LINUX_ENOTNAM		118
    133      1.1   itohy #define LINUX_ENAVAIL		119
    134      1.1   itohy #define LINUX_EISNAM		120
    135      1.1   itohy #define LINUX_EREMOTEIO		121
    136      1.1   itohy #define LINUX_EDQUOT		122
    137      1.1   itohy #define	LINUX_ENOMEDIUM		123
    138      1.1   itohy #define	LINUX_EMEDIUMTYPE	124
    139      1.1   itohy 
    140      1.1   itohy #endif /* !_M68K_LINUX_ERRNO_H */
    141