以下来自linux 2.4.20-18的内核代码中的/usr/include/asm/errno.h
#ifndef _I386_ERRNO_H
#define _I386_ERRNO_H
#define EPERM 1 /* Operation not permitted */
#define ENOENT 2 /* No such file or directory */
#define ESRCH 3 /* No such process */
#define EINTR 4 /* Interrupted system call */
#define EIO 5 /* I/O error */
#define ENXIO 6 /* No such device or address */
#define E2BIG 7 /* Arg list too long */
#define ENOEXEC 8 /* Exec format error */
#define EBADF 9 /* Bad file number */
#define ECHILD 10 /* No child processes */
#define EAGAIN 11 /* Try again */
#define ENOMEM 12 /* Out of memory */
#define EACCES 13 /* Permission denied */
#define EFAULT 14 /* Bad address */
#define ENOTBLK 15 /* Block device required */
#define EBUSY 16 /* Device or resource busy */
#define EEXIST 17 /* File exists */
#define EXDEV 18 /* Cross-device link */
#define ENODEV 19 /* No such device */
#define ENOTDIR 20 /* Not a directory */
#define EISDIR 21 /* Is a directory */
#define EINVAL 22 /* Invalid argument */
#define ENFILE 23 /* File table overflow */
#define EMFILE 24 /* Too many open files */
#define ENOTTY 25 /* Not a typewriter */
#define ETXTBSY 26 /* Text file busy */
#define EFBIG 27 /* File too large */
#define ENOSPC 28 /* No space left on device */
#define ESPIPE 29 /* Illegal seek */
#define EROFS 30 /* Read-only file system */
#define EMLINK 31 /* Too many links */
#define EPIPE 32 /* Broken pipe */
#define EDOM 33 /* Math argument out of domain of func */
#define ERANGE 34 /* Math result not representable */
#define EDEADLK 35 /* Resource deadlock would occur */
#define ENAMETOOLONG 36 /* File name too long */
#define ENOLCK 37 /* No record locks available */
#define ENOSYS 38 /* Function not implemented */
#define ENOTEMPTY 39 /* Directory not empty */
#define ELOOP 40 /* Too many symbolic links encountered */
#define EWOULDBLOCK EAGAIN /* Operation would block */
#define ENOMSG 42 /* No message of desired type */
#define EIDRM 43 /* Identifier removed */
#define ECHRNG 44 /* Channel number out of range */
#define EL2NSYNC 45 /* Level 2 not synchronized */
#define EL3HLT 46 /* Level 3 halted */
#define EL3RST 47 /* Level 3 reset */
#define ELNRNG 48 /* Link number out of range */
#define EUNATCH 49 /* Protocol driver not attached */
#define ENOCSI 50 /* No CSI structure available */
#define EL2HLT 51 /* Level 2 halted */
#define EBADE 52 /* Invalid exchange */
#define EBADR 53 /* Invalid request descriptor */
#define EXFULL 54 /* Exchange full */
#define ENOANO 55 /* No anode */
#define EBADRQC 56 /* Invalid request code */
#define EBADSLT 57 /* Invalid slot */
#define EDEADLOCK EDEADLK
#define EBFONT 59 /* Bad font file format */
#define ENOSTR 60 /* Device not a stream */
#define ENODATA 61 /* No data available */
#define ETIME 62 /* Timer expired */
#define ENOSR 63 /* Out of streams resources */
#define ENONET 64 /* Machine is not on the network */
#define ENOPKG 65 /* Package not installed */
#define EREMOTE 66 /* Object is remote */
#define ENOLINK 67 /* Link has been severed */
#define EADV 68 /* Advertise error */
#define ESRMNT 69 /* Srmount error */
#define ECOMM 70 /* Communication error on send */
#define EPROTO 71 /* Protocol error */
#define EMULTIHOP 72 /* Multihop attempted */
#define EDOTDOT 73 /* RFS specific error */
#define EBADMSG 74 /* Not a data message */
#define EOVERFLOW 75 /* Value too large for defined data type */
#define ENOTUNIQ 76 /* Name not unique on network */
#define EBADFD 77 /* File descriptor in bad state */
#define EREMCHG 78 /* Remote address changed */
#define ELIBACC 79 /* Can not access a needed shared library */
#define ELIBBAD 80 /* Accessing a corrupted shared library */
#define ELIBSCN 81 /* .lib section in a.out corrupted */
#define ELIBMAX 82 /* Attempting to link in too many shared libraries */
#define ELIBEXEC 83 /* Cannot exec a shared library directly */
#define EILSEQ 84 /* Illegal byte sequence */
#define ERESTART 85 /* Interrupted system call should be restarted */
#define ESTRPIPE 86 /* Streams pipe error */
#define EUSERS 87 /* Too many users */
#define ENOTSOCK 88 /* Socket operation on non-socket */
#define EDESTADDRREQ 89 /* Destination address required */
#define EMSGSIZE 90 /* Message too long */
#define EPROTOTYPE 91 /* Protocol wrong type for socket */
#define ENOPROTOOPT 92 /* Protocol not available */
#define EPROTONOSUPPORT 93 /* Protocol not supported */
#define ESOCKTNOSUPPORT 94 /* Socket type not supported */
#define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
#define EPFNOSUPPORT 96 /* Protocol family not supported */
#define EAFNOSUPPORT 97 /* Address family not supported by protocol */
#define EADDRINUSE 98 /* Address already in use */
#define EADDRNOTAVAIL 99 /* Cannot assign requested address */
#define ENETDOWN 100 /* Network is down */
#define ENETUNREACH 101 /* Network is unreachable */
#define ENETRESET 102 /* Network dropped connection because of reset */
#define ECONNABORTED 103 /* Software caused connection abort */
#define ECONNRESET 104 /* Connection reset by peer */
#define ENOBUFS 105 /* No buffer space available */
#define EISCONN 106 /* Transport endpoint is already connected */
#define ENOTCONN 107 /* Transport endpoint is not connected */
#define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
#define ETOOMANYREFS 109 /* Too many references: cannot splice */
#define ETIMEDOUT 110 /* Connection timed out */
#define ECONNREFUSED 111 /* Connection refused */
#define EHOSTDOWN 112 /* Host is down */
#define EHOSTUNREACH 113 /* No route to host */
#define EALREADY 114 /* Operation already in progress */
#define EINPROGRESS 115 /* Operation now in progress */
#define ESTALE 116 /* Stale NFS file handle */
#define EUCLEAN 117 /* Structure needs cleaning */
#define ENOTNAM 118 /* Not a XENIX named type file */
#define ENAVAIL 119 /* No XENIX semaphores available */
#define EISNAM 120 /* Is a named type file */
#define EREMOTEIO 121 /* Remote I/O error */
#define EDQUOT 122 /* Quota exceeded */
#define ENOMEDIUM 123 /* No medium found */
#define EMEDIUMTYPE 124 /* Wrong medium type */
#endif
分享到:
相关推荐
### Linux系统调用错误代码(Errno)详解 在Linux操作系统中,系统调用是应用程序与内核交互的重要方式之一。当系统调用失败时,通常会返回一个负数,并将具体的错误码存储在全局变量`errno`中。了解这些错误码对于...
当linux系统函数出错时,通常会返回一个负值,而且整型变量errno通常被设置为具有特定信息的值。例如,open 函数如果成功执行 则返回一个非负文件描述符,如出错则返回−1。在 open出错时,有大约15种不同的errno值(文件...
Linux errno.h 文件错误号说明 errno.h 文件是 Linux 系统中一个非常重要的头文件,它定义了一系列的错误号,每个错误号对应着一个特定的错误信息。了解这些错误号对于 Linux 系统的开发和调试至关重要。 在 Linux...
linux错误码 errno值 #define EPERM 1/* Not super-user */ #define ENOENT 2 /* No such file or directory */ #define ESRCH 3/* No such process */ #define EINTR 4/* Interrupted system call */ #...
Linux 中 errno 使用 Linux 操作系统中的 errno 变量是一个非常重要的概念,它用于记录函数调用时出现的错误信息。errno 变量是通过 include errno.h 头文件来定义的,errno 的值是一个整数,它的值可以通过查看 ...
5. "Linux errno详解 - 明明是悟空 - 博客园.url":这可能是一个详细解释Linux系统错误码的资源,包括错误24。 解决"Can't create TCP/IP socket(24)"的方法通常涉及以下几个步骤: 1. **检查系统限制**:使用`...
解释linux系统errno的值,如果你不明白errno对应的错误信息,这篇文档将帮助你
主要介绍了 linux上TCP connection timeout问题解决办法的相关资料,需要的朋友可以参考下
Linux系统编程是编程领域中一个重要分支,其主要内容涉及Linux操作系统环境下,如何通过系统调用和库函数来实现进程控制、文件操作、内存管理、网络通信以及设备操作等底层操作。在Linux系统编程中,一个重要的概念...
8. **错误处理**:在Linux下编程,学会正确处理错误至关重要,如检查函数返回值,使用`perror`打印错误信息,理解和使用`errno`全局变量。 9. **Makefile**:Makefile是Linux下组织和自动化编译过程的工具。理解...
5. 错误处理:了解`errno`变量和`perror()`函数,以及如何正确处理运行时错误。 6. 链表、树等数据结构:这些数据结构在Linux编程中广泛使用,理解它们的实现和应用。 【Linux基础入门】 学习Linux基础知识包括...
6. **错误处理**:`errno`全局变量记录错误代码,`perror`函数用于打印错误信息。 通过本教程,学习者将能够熟练地安装和配置Red Hat Linux系统,理解其基本操作,以及进行简单的C语言编程。通过不断实践和深入学习...
// dir, strerror(errno)), sizeof buffer)) { // _EXIT(EXIT_FAILURE); // } // logfile(LOG_INFO, "%s", buffer); // addreply(550, "%s", buffer); ``` 这样,FTP 服务器将不再提示 550 错误,上传中文名的文件夹...
在Linux操作系统中,UDP(User Datagram Protocol)是一种无连接的传输层协议,常用于需要高效、低延迟且不保证顺序到达或数据完整性的场景。多播是UDP的一种特殊形式,它允许一个发送者向多个接收者同时发送数据,...
在Linux系统中,`yum`是一个非常重要的包管理器,用于安装、更新和删除软件包。当遇到"Errno 14 curl#37 - "Couldn't open file /mnt/repodata/repomd.xml""这样的错误时,意味着在尝试使用`yum`执行操作时,系统...
10. **错误处理**:`errno`全局变量存储了最近一次系统调用的错误代码,`perror()`函数将`errno`对应的错误信息打印到标准错误输出。 以上知识点构成了LinuxC编程的基础,通过学习和实践,开发者可以创建出高效、...
在本教程中,我们将深入探讨如何在Windows XP操作系统上安装Linux虚拟机,使用的是VMware这一流行的虚拟化软件。这是一份适用于初学者的指南,旨在帮助用户理解虚拟化技术,以及如何通过虚拟机在不改变现有系统的...
6. **错误处理**:学习如何使用errno全局变量和perror函数来识别和处理程序运行中的错误。 7. **信号处理**:C语言在Linux中可以捕获和处理系统信号,如SIGINT(中断)、SIGTERM(终止)等,这在编写守护进程或响应...
10. **错误处理和调试**:学会利用errno和perror检查错误,使用gdb进行程序调试,以及如何编写可维护的代码。 11. **权限和文件系统**:理解Linux的用户和组概念,以及chmod、chown等命令对文件权限的管理。熟悉EXT...
还有错误处理,例如使用`errno`全局变量和`perror()`函数来获取和打印错误信息。 在实际编程中,理解Makefile的编写和使用也很关键。Makefile可以帮助自动化编译和链接过程,提高开发效率。`gcc`和`g++`编译器的...