source: GPL/trunk/include/linux/errno.h@ 772

Last change on this file since 772 was 772, checked in by David Azarewicz, 4 months ago

Merge in changes from 6.6-LTS branch.
Fixed additional 25+ problems.

File size: 643 bytes
Line 
1/* $Id: errno.h,v 1.1.1.1 2003/07/02 13:57:00 eleph Exp $ */
2
3#ifndef _LINUX_ERRNO_H
4#define _LINUX_ERRNO_H
5
6#include <asm/errno.h>
7
8#ifdef __KERNEL__
9
10/* Should never be seen by user programs */
11#define ERESTARTSYS 512
12#define ERESTARTNOINTR 513
13#define ERESTARTNOHAND 514 /* restart if no handler.. */
14#define ENOIOCTLCMD 515 /* No ioctl command */
15#define EPROBE_DEFER 517 /* Driver requests probe retry */
16#define ENOTSUPP 524 /* Operation is not supported */
17
18#endif
19#define ENOENT 2 /* No such file or directory */
20#define EIO 5 /* I/O error */
21#define EEXIST 17 /* File exists */
22#define EINVAL 22
23#endif
Note: See TracBrowser for help on using the repository browser.