Subversion Repositories Kolibri OS

Rev

Rev 5270 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5270 Rev 6082
Line 4... Line 4...
4
#include 
4
#include 
Line 5... Line 5...
5
 
5
 
6
#define	EDEADLK		35	/* Resource deadlock would occur */
6
#define	EDEADLK		35	/* Resource deadlock would occur */
7
#define	ENAMETOOLONG	36	/* File name too long */
7
#define	ENAMETOOLONG	36	/* File name too long */
-
 
8
#define	ENOLCK		37	/* No record locks available */
-
 
9
 
-
 
10
/*
-
 
11
 * This error code is special: arch syscall entry code will return
-
 
12
 * -ENOSYS if users try to call a syscall that doesn't exist.  To keep
-
 
13
 * failures of syscalls that really do exist distinguishable from
-
 
14
 * failures due to attempts to use a nonexistent syscall, syscall
-
 
15
 * implementations should refrain from returning -ENOSYS.
8
#define	ENOLCK		37	/* No record locks available */
16
 */
-
 
17
#define	ENOSYS		38	/* Invalid system call number */
9
#define	ENOSYS		38	/* Function not implemented */
18
 
10
#define	ENOTEMPTY	39	/* Directory not empty */
19
#define	ENOTEMPTY	39	/* Directory not empty */
11
#define	ELOOP		40	/* Too many symbolic links encountered */
20
#define	ELOOP		40	/* Too many symbolic links encountered */
12
#define	EWOULDBLOCK	EAGAIN	/* Operation would block */
21
#define	EWOULDBLOCK	EAGAIN	/* Operation would block */
13
#define	ENOMSG		42	/* No message of desired type */
22
#define	ENOMSG		42	/* No message of desired type */