分享

linux 错误返回的含义

 huihaoking 2014-01-26

常见的err说明

include/asm-generic/errno-base.h

  1. #define EPERM        1  /* Operation not permitted */  
  2. #define ENOENT       2  /* No such file or directory */  
  3. #define ESRCH        3  /* No such process */  
  4. #define EINTR        4  /* Interrupted system call */  
  5. #define EIO      5  /* I/O error */  
  6. #define ENXIO        6  /* No such device or address */  
  7. #define E2BIG        7  /* Argument list too long */  
  8. #define ENOEXEC          8  /* Exec format error */  
  9. #define EBADF        9  /* Bad file number */  
  10. #define ECHILD      10  /* No child processes */  
  11. #define EAGAIN      11  /* Try again */  
  12. #define ENOMEM      12  /* Out of memory */  
  13. #define EACCES      13  /* Permission denied */  
  14. #define EFAULT      14  /* Bad address */  
  15. #define ENOTBLK         15  /* Block device required */  
  16. #define EBUSY       16  /* Device or resource busy */  
  17. #define EEXIST      17  /* File exists */  
  18. #define EXDEV       18  /* Cross-device link */  
  19. #define ENODEV      19  /* No such device */  
  20. #define ENOTDIR         20  /* Not a directory */  
  21. #define EISDIR      21  /* Is a directory */  
  22. #define EINVAL      22  /* Invalid argument */  
  23. #define ENFILE      23  /* File table overflow */  
  24. #define EMFILE      24  /* Too many open files */  
  25. #define ENOTTY      25  /* Not a typewriter */  
  26. #define ETXTBSY         26  /* Text file busy */  
  27. #define EFBIG       27  /* File too large */  
  28. #define ENOSPC      28  /* No space left on device */  
  29. #define ESPIPE      29  /* Illegal seek */  
  30. #define EROFS       30  /* Read-only file system */  
  31. #define EMLINK      31  /* Too many links */  
  32. #define EPIPE       32  /* Broken pipe */  
  33. #define EDOM        33  /* Math argument out of domain of func */  
  34. #define ERANGE      34  /* Math result not representable */ 

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多