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

Last change on this file since 679 was 679, checked in by David Azarewicz, 4 years ago

Merge changes from Paul's uniaud32next branch.

File size: 583 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 ENOTSUPP 524 /* Operation is not supported */
16
17#endif
18#define ENOENT 2 /* No such file or directory */
19#define EIO 5 /* I/O error */
20#define EEXIST 17 /* File exists */
21#define EINVAL 22
22#endif
Note: See TracBrowser for help on using the repository browser.