Main Page | Alphabetical List | Data Structures | Directories | File List | Data Fields | Globals

linux/errno.h

Go to the documentation of this file.
00001 #ifndef _LINUX_ERRNO_H
00002 #define _LINUX_ERRNO_H
00003 
00004 #include <asm/errno.h>
00005 
00006 #ifdef __KERNEL__
00007 
00008 /* Should never be seen by user programs */
00009 #define ERESTARTSYS     512
00010 #define ERESTARTNOINTR  513
00011 #define ERESTARTNOHAND  514     /* restart if no handler.. */
00012 #define ENOIOCTLCMD     515     /* No ioctl command */
00013 
00014 /* Defined for the NFSv3 protocol */
00015 #define EBADHANDLE      521     /* Illegal NFS file handle */
00016 #define ENOTSYNC        522     /* Update synchronization mismatch */
00017 #define EBADCOOKIE      523     /* Cookie is stale */
00018 #define ENOTSUPP        524     /* Operation is not supported */
00019 #define ETOOSMALL       525     /* Buffer or request is too small */
00020 #define ESERVERFAULT    526     /* An untranslatable error occurred */
00021 #define EBADTYPE        527     /* Type not supported by server */
00022 #define EJUKEBOX        528     /* Request initiated, but will not complete before timeout */
00023 
00024 #endif
00025 
00026 #endif