Home | History | Annotate | Line # | Download | only in m68k
linux_errno.h revision 1.1
      1  1.1  itohy /* 	$NetBSD: linux_errno.h,v 1.1 1998/12/15 19:25:40 itohy 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  itohy 
     42  1.1  itohy /* Use common/linux_errno.h for #1-35 */
     43  1.1  itohy 
     44  1.1  itohy #define LINUX_ENAMETOOLONG	36
     45  1.1  itohy #define LINUX_ENOLCK		37
     46  1.1  itohy #define LINUX_ENOSYS		38
     47  1.1  itohy #define LINUX_ENOTEMPTY		39
     48  1.1  itohy #define LINUX_ELOOP		40
     49  1.1  itohy #define	LINUX_EWOULDBLOCK	LINUX_EAGAIN
     50  1.1  itohy #define LINUX_ENOMSG		42
     51  1.1  itohy #define LINUX_EIDRM		43
     52  1.1  itohy #define LINUX_ECHRNG		44
     53  1.1  itohy #define LINUX_EL2NSYNC		45
     54  1.1  itohy #define LINUX_EL3HLT		46
     55  1.1  itohy #define LINUX_EL3RST		47
     56  1.1  itohy #define LINUX_ELNRNG		48
     57  1.1  itohy #define LINUX_EUNATCH		49
     58  1.1  itohy #define LINUX_ENOCSI		50
     59  1.1  itohy #define LINUX_EL2HLT		51
     60  1.1  itohy #define LINUX_EBADE		52
     61  1.1  itohy #define LINUX_EBADR		53
     62  1.1  itohy #define LINUX_EXFULL		54
     63  1.1  itohy #define LINUX_ENOANO		55
     64  1.1  itohy #define LINUX_EBADRQC		56
     65  1.1  itohy #define LINUX_EBADSLT		57
     66  1.1  itohy #define	LINUX_EDEADLOCK		LINUX_EDEADLK
     67  1.1  itohy #define LINUX_EBFONT		59
     68  1.1  itohy #define LINUX_ENOSTR		60
     69  1.1  itohy #define LINUX_ENODATA		61
     70  1.1  itohy #define LINUX_ETIME		62
     71  1.1  itohy #define LINUX_ENOSR		63
     72  1.1  itohy #define LINUX_ENONET		64
     73  1.1  itohy #define LINUX_ENOPKG		65
     74  1.1  itohy #define LINUX_EREMOTE		66
     75  1.1  itohy #define LINUX_ENOLINK		67
     76  1.1  itohy #define LINUX_EADV		68
     77  1.1  itohy #define LINUX_ESRMNT		69
     78  1.1  itohy #define LINUX_ECOMM		70
     79  1.1  itohy #define LINUX_EPROTO		71
     80  1.1  itohy #define LINUX_EMULTIHOP		72
     81  1.1  itohy #define LINUX_EDOTDOT		73
     82  1.1  itohy #define LINUX_EBADMSG		74
     83  1.1  itohy #define LINUX_EOVERFLOW		75
     84  1.1  itohy #define LINUX_ENOTUNIQ		76
     85  1.1  itohy #define LINUX_EBADFD		77
     86  1.1  itohy #define LINUX_EREMCHG		78
     87  1.1  itohy #define LINUX_ELIBACC		79
     88  1.1  itohy #define LINUX_ELIBBAD		80
     89  1.1  itohy #define LINUX_ELIBSCN		81
     90  1.1  itohy #define LINUX_ELIBMAX		82
     91  1.1  itohy #define LINUX_ELIBEXEC		83
     92  1.1  itohy #define LINUX_EILSEQ		84
     93  1.1  itohy #define LINUX_ERESTART		85
     94  1.1  itohy #define LINUX_ESTRPIPE		86
     95  1.1  itohy #define LINUX_EUSERS		87
     96  1.1  itohy #define LINUX_ENOTSOCK		88
     97  1.1  itohy #define LINUX_EDESTADDRREQ	89
     98  1.1  itohy #define LINUX_EMSGSIZE		90
     99  1.1  itohy #define LINUX_EPROTOTYPE	91
    100  1.1  itohy #define LINUX_ENOPROTOOPT	92
    101  1.1  itohy #define LINUX_EPROTONOSUPPORT	93
    102  1.1  itohy #define LINUX_ESOCKTNOSUPPORT	94
    103  1.1  itohy #define LINUX_EOPNOTSUPP	95
    104  1.1  itohy #define LINUX_EPFNOSUPPORT	96
    105  1.1  itohy #define LINUX_EAFNOSUPPORT	97
    106  1.1  itohy #define LINUX_EADDRINUSE	98
    107  1.1  itohy #define LINUX_EADDRNOTAVAIL	99
    108  1.1  itohy #define LINUX_ENETDOWN		100
    109  1.1  itohy #define LINUX_ENETUNREACH	101
    110  1.1  itohy #define LINUX_ENETRESET		102
    111  1.1  itohy #define LINUX_ECONNABORTED	103
    112  1.1  itohy #define LINUX_ECONNRESET	104
    113  1.1  itohy #define LINUX_ENOBUFS		105
    114  1.1  itohy #define LINUX_EISCONN		106
    115  1.1  itohy #define LINUX_ENOTCONN		107
    116  1.1  itohy #define LINUX_ESHUTDOWN		108
    117  1.1  itohy #define LINUX_ETOOMANYREFS	109
    118  1.1  itohy #define LINUX_ETIMEDOUT		110
    119  1.1  itohy #define LINUX_ECONNREFUSED	111
    120  1.1  itohy #define LINUX_EHOSTDOWN		112
    121  1.1  itohy #define LINUX_EHOSTUNREACH	113
    122  1.1  itohy #define LINUX_EALREADY		114
    123  1.1  itohy #define LINUX_EINPROGRESS	115
    124  1.1  itohy #define LINUX_ESTALE		116
    125  1.1  itohy #define LINUX_EUCLEAN		117
    126  1.1  itohy #define LINUX_ENOTNAM		118
    127  1.1  itohy #define LINUX_ENAVAIL		119
    128  1.1  itohy #define LINUX_EISNAM		120
    129  1.1  itohy #define LINUX_EREMOTEIO		121
    130  1.1  itohy #define LINUX_EDQUOT		122
    131  1.1  itohy #define	LINUX_ENOMEDIUM		123
    132  1.1  itohy #define	LINUX_EMEDIUMTYPE	124
    133  1.1  itohy 
    134  1.1  itohy #endif /* !_M68K_LINUX_ERRNO_H */
    135