errno.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_ERRNO_H
  2. #define _LINUX_ERRNO_H
  3. #include <asm/errno.h>
  4. #ifdef __KERNEL__
  5. /* Should never be seen by user programs */
  6. #define ERESTARTSYS 512
  7. #define ERESTARTNOINTR 513
  8. #define ERESTARTNOHAND 514 /* restart if no handler.. */
  9. #define ENOIOCTLCMD 515 /* No ioctl command */
  10. /* Defined for the NFSv3 protocol */
  11. #define EBADHANDLE 521 /* Illegal NFS file handle */
  12. #define ENOTSYNC 522 /* Update synchronization mismatch */
  13. #define EBADCOOKIE 523 /* Cookie is stale */
  14. #define ENOTSUPP 524 /* Operation is not supported */
  15. #define ETOOSMALL 525 /* Buffer or request is too small */
  16. #define ESERVERFAULT 526 /* An untranslatable error occurred */
  17. #define EBADTYPE 527 /* Type not supported by server */
  18. #define EJUKEBOX 528 /* Request initiated, but will not complete before timeout */
  19. #endif
  20. #endif