系統(tǒng)出錯(cuò)的信息號在/usr/include/asm/error.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 */
#define ECANCELED 125 /* Operation Cancelled */
#define ENOKEY 126 /* Required key not available */
#define EKEYEXPIRED 127 /* Key has expired */
#define EKEYREVOKED 128 /* Key has been revoked */
#define EKEYREJECTED 129 /* Key was rejected by service */
#endif
from:
http://soft.chinabyte.com/337/7782837.shtml
只有注冊用戶登錄后才能發(fā)表評論。 | ||
【推薦】100%開源!大型工業(yè)跨平臺軟件C++源碼提供,建模,組態(tài)!
![]() |
||
相關(guān)文章:
|
||
網(wǎng)站導(dǎo)航:
博客園
IT新聞
BlogJava
博問
Chat2DB
管理
|
||
|
| |||||||||
日 | 一 | 二 | 三 | 四 | 五 | 六 | |||
---|---|---|---|---|---|---|---|---|---|
25 | 26 | 27 | 28 | 29 | 30 | 31 | |||
1 | 2 | 3 | 4 | 5 | 6 | 7 | |||
8 | 9 | 10 | 11 | 12 | 13 | 14 | |||
15 | 16 | 17 | 18 | 19 | 20 | 21 | |||
22 | 23 | 24 | 25 | 26 | 27 | 28 | |||
29 | 30 | 31 | 1 | 2 | 3 | 4 |
常用鏈接
留言簿(10)
隨筆分類(307)
- Algorithm(22)
- apache(1)
- Assembly(1)
- browser(2)
- C++_BASIS(39)
- Compiling Theorem(1)
- CPU(1)
- cvs(3)
- Database(8)
- Designed Patterns(3)
- FileFormat(4)
- FileSystem(1)
- freebsd(1)
- Game(2)
- gdb(1)
- Gossips(12)
- GP_STL(3)
- interview(8)
- java
- life and living(1)
- linux kernel(12)
- Linux_Coding(43)
- Linux_Driver
- Linux_SysAdmin(26)
- makefile(3)
- misce(5)
- MultiCore(1)
- Network(14)
- OS(18)
- RegularExpression(1)
- schedule(1)
- SearchEngine(1)
- security(2)
- Shell(25)
- Socket(18)
- storage(2)
- Template(4)
- VC_MFC(4)
- vi(5)
- website(1)
- windows(7)
隨筆檔案(297)
- 2012年10月 (1)
- 2012年9月 (1)
- 2012年7月 (1)
- 2012年6月 (7)
- 2012年5月 (3)
- 2012年4月 (2)
- 2011年9月 (3)
- 2011年8月 (3)
- 2011年6月 (3)
- 2011年5月 (2)
- 2011年3月 (2)
- 2011年1月 (1)
- 2010年12月 (2)
- 2010年11月 (6)
- 2010年10月 (4)
- 2010年9月 (7)
- 2010年8月 (12)
- 2010年7月 (6)
- 2010年6月 (5)
- 2010年5月 (11)
- 2010年4月 (16)
- 2010年3月 (20)
- 2010年2月 (18)
- 2010年1月 (26)
- 2009年12月 (34)
- 2009年11月 (36)
- 2009年10月 (5)
- 2009年9月 (1)
- 2009年7月 (2)
- 2009年6月 (3)
- 2009年5月 (6)
- 2009年4月 (6)
- 2009年3月 (11)
- 2009年2月 (6)
- 2008年11月 (1)
- 2008年10月 (1)
- 2008年9月 (3)
- 2008年8月 (4)
- 2008年7月 (16)
algorithm
- andytan
- algorithm, linux, os, network,etc
- EXACT STRING MATCHING ALGORITHMS
- httperf -- a web perf test tool
- Java多線程
- 編程夜未眠
- 布薩空間
- 結(jié)構(gòu)之法
- 沈一峰 google技術(shù)博客
- 小兵的窩
Books_Free_Online
C++
- Bjarne Stroustrup's C++ Style and Technique FAQ
- boyplayee column
- C Plus Plus
- CPP Reference
- LearnC++Website
- Welcome to Bjarne Stroustrup's homepage!
database
Linux
Linux shell
linux socket
misce
- cloudward
- 感覺這個(gè)博客還是不錯(cuò),雖然做的東西和我不大相關(guān),覺得看看還是有好處的
network
OSS
- Google Android
- Android is a software stack for mobile devices that includes an operating system, middleware and key applications. This early look at the Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.
- os161 file list
overall
搜索
最新評論

- 1.?re: memcached完全剖析系列教程《轉(zhuǎn)》
- mark
- --zgpxgame
- 2.?re: 用prctl給線程命名
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --none
- 3.?re: 用prctl給線程命名
- 請問大俠: 用top命令的時(shí)候可以顯示修改后的線程名么?如何做呢?
- --dhao123@sina.com
- 4.?re: 解決Linux pthread_create內(nèi)存泄漏問題
-
我試過,每一種方法有的時(shí)候不行。
第二種是可以的。
- --朱先生
- 5.?re: 著名程序庫的比較和學(xué)習(xí)經(jīng)驗(yàn)
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --buy dissertation
- 6.?re: linux的消息隊(duì)列與共享內(nèi)存編程
- 內(nèi)容選擇得很好,謝謝
- --朱志超
- 7.?re: 著名程序庫的比較和學(xué)習(xí)經(jīng)驗(yàn)
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --LillianHancock
- 8.?re: 解決Linux pthread_create內(nèi)存泄漏問題[未登錄]
- 不錯(cuò),支持一個(gè)。
- --jack
- 9.?re: 淺談游戲服務(wù)器---功能模塊上來看[未登錄]
- 不錯(cuò) 好文!! 期待博主繼續(xù)
- --cppexplore
- 10.?re: 全面整理的C++面試題
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --chatler
- 11.?re: 微軟面試中簡單的算法題目(轉(zhuǎn))
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --chatler
- 12.?re: Browsers, processes, cookies and session state
- 每個(gè)IE Instance該是不同的進(jìn)程吧,可以獲取進(jìn)程ID,在每個(gè)instance里建一個(gè)名稱包含進(jìn)程id的目錄名,就可以分目錄存儲了吧。
- --chatler
- 13.?re: Browsers, processes, cookies and session state
-
文章說的很清楚,多謝
我有一個(gè)問題:
如何為每個(gè)ie instance ie實(shí)例的 Persistent cookies cookie 指定不同的存儲目錄? - --domolo
- 14.?re: 從一道面試題看指針與數(shù)組的區(qū)別
- 一個(gè)字,強(qiáng)!
- --路過
- 15.?re: 一個(gè)關(guān)于單向鏈表的面試題
- 評論內(nèi)容較長,點(diǎn)擊標(biāo)題查看
- --chatler
閱讀排行榜
- 1.?Windows Socket五種I/O模型(8319)
- 2.?最大公約數(shù)(Gcd)兩種算法(Euclid && Stein)<轉(zhuǎn)>(5477)
- 3.?用prctl給線程命名(5029)
- 4.?Linux core dump file詳解 <轉(zhuǎn)>(4471)
- 5.?算法面試題(3389)
- 6.?64位與32位編程的數(shù)據(jù)類型區(qū)別(3224)
- 7.?解決Linux pthread_create內(nèi)存泄漏問題(3105)
- 8.?NUMA與英特爾下一代Xeon處理器學(xué)習(xí)心得<轉(zhuǎn)>(2978)
- 9.?c語言抓取網(wǎng)頁數(shù)據(jù)(2819)
- 10.?CVSNT服務(wù)器配置——添加用戶、解決無法登陸(2722)
- 11.? pthread_join函數(shù)及l(fā)inux線程(2633)
-
12.?為 C/C++ 項(xiàng)目構(gòu)建您自己的內(nèi)存管理器
(2541) - 13.?一個(gè)基于Event Poll(epoll)的TCP Server Framework,淺析epoll(2538)
- 14.?memcached完全剖析系列教程《轉(zhuǎn)》(2494)
- 15.?G++編譯選項(xiàng)(2386)
- 16.?STL容器 erase的使用陷井<轉(zhuǎn)載>(2174)
- 17.?epoll使用例子(2104)
- 18.?linux的消息隊(duì)列與共享內(nèi)存編程(2056)
- 19.?gdb帶參數(shù)調(diào)試(2054)
- 20.?The Linux Kernel Module Programming Guide(1997)
- 21.?一個(gè)關(guān)于單向鏈表的面試題(1895)
- 22.?c中strncmp與memcmp的區(qū)別(1871)
- 23.?優(yōu)化Derby數(shù)據(jù)庫技巧(1812)
- 24.?一個(gè)基于完成端口的TCP Server Framework,淺析IOCP(1737)
- 25.?自己整理的指令(1730)
- 26.?autotools制作Makefile 和configure文件(1616)
- 27.?Google C++ Style Guide(1611)
- 28.?linux系統(tǒng)調(diào)用函數(shù)(1610)
- 29.? vim大小寫轉(zhuǎn)換(1571)
- 30.?An In-Depth Look into the Win32 Portable Executable File Format(1570)
- 31.?淺談游戲服務(wù)器---功能模塊上來看(1530)
- 32.?教你用c實(shí)現(xiàn)http協(xié)議(1482)
-
33.?MIPS architecture
(1473) - 34.?Aix下查看占用端口的進(jìn)程(1464)
- 35.?史上最強(qiáng)bash函數(shù)庫(1394)
- 36.?linux trap詳解(1335)
- 37.?ms,google,vmware,nvidia美國總部面試題(1313)
- 38.?多CPU上的原子操作(1310)
- 39.?power函數(shù)寫法《轉(zhuǎn)》(1269)
-
40.?Critical Section
(1236)
評論排行榜
- 1.?著名程序庫的比較和學(xué)習(xí)經(jīng)驗(yàn)(3)
- 2.?用prctl給線程命名(2)
-
3.?Browsers, processes, cookies and session state
(2) - 4.?解決Linux pthread_create內(nèi)存泄漏問題(2)
- 5.?從一道面試題看指針與數(shù)組的區(qū)別 <轉(zhuǎn)>(1)
- 6.?全面整理的C++面試題(1)
- 7.?微軟面試中簡單的算法題目(轉(zhuǎn))(1)
- 8.?一個(gè)關(guān)于單向鏈表的面試題(1)
- 9.?memcached完全剖析系列教程《轉(zhuǎn)》(1)
- 10.?linux的消息隊(duì)列與共享內(nèi)存編程(1)
- 11.?淺談游戲服務(wù)器---功能模塊上來看(1)
- 12.?C Language Know-how(0)
- 13.?shell中管道兩邊的進(jìn)程是怎么通信的(0)
- 14.?Linux 內(nèi)核筆記2 – 進(jìn)程調(diào)度(0)
- 15.? 如何準(zhǔn)確的截取出IP段(0)
- 16.?LINUX命令xargs的簡單應(yīng)用及舉例(0)
- 17.?查看系統(tǒng)調(diào)用和信號的命令--strace(0)
- 18.?brk__sbrk(0)
- 19.?6個(gè)變態(tài)的C語言Hello World程序(0)
- 20.?如何寫一個(gè)網(wǎng)絡(luò)蜘蛛(0)
- 21.?open和fopen的區(qū)別(0)
- 22.?如何讀取一行中的多個(gè)數(shù)據(jù)(0)
- 23.?Context Switch Definition(0)
- 24.?VIM技巧(0)
- 25.?What is the difference between user level threads and kernel level threads?(0)
- 26.?如何在Linux內(nèi)核中寫文件(0)
- 27.?簡歷中的自我評價(jià)用語(0)
- 28.?雅虎給出的34條網(wǎng)站加速方法(0)
- 29.?必看的70道面試題回答(0)
- 30.?linux常用C函數(shù)(0)
- 31.?Linux下的文件操作:系統(tǒng)調(diào)用還是庫函數(shù)調(diào)用?(0)
- 32.?malloc and realloc(0)
- 33.?五大非常見Linux命令(0)
- 34.?Hash Function related(0)
- 35.?gdb know-how(0)
- 36.?Knuth–Morris–Pratt algorithm(0)
- 37.?幾個(gè)很有用的系統(tǒng)宏(0)
- 38.?Hash 算法及其應(yīng)用(0)
- 39.?process and thread屬性讀取(0)
- 40.?C語言優(yōu)先級(0)