summaryrefslogtreecommitdiffstats
path: root/src/include/errno.h
blob: 8fe67c672fa4ccc27a9301c620a44f43ee3e1688 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _ERRNO_H
#define _ERRNO_H

#define	EIO              5      // I/O error 
#define EAGAIN          11      // Try again
#define	EFAULT          14      // Bad address 
#define EINVAL          22      // Invalid argument

#define EWOULDBLOCK     EAGAIN  // operation would block

#endif
OpenPOWER on IntegriCloud