Staging
v0.8.1
https://github.com/python/cpython
Revision e907208b306a1b0882ae052176c72ff371475297 authored by Fred Drake on 06 December 1997, 07:25:41 UTC, committed by Fred Drake on 06 December 1997, 07:25:41 UTC
functions and constants together).

Make explicit datadesc sections for each of the constants which might appear,
and have a description of each.  (Descriptions are based on the Linux
documentation and sources and the Solaris man pages.)

Hopefully Jeremy won't mind, because I didn't ask.  ;-)
1 parent a0eaa22
Raw File
Tip revision: e907208b306a1b0882ae052176c72ff371475297 authored by Fred Drake on 06 December 1997, 07:25:41 UTC
Some reorganization (all limit operations & constants together, and all usage
Tip revision: e907208
errno_unix.h

#define ENOTDIR		(-120)
#define EACCES		(-54)
#define EEXIST		(-48)
#define EBUSY		(-47)
#define EROFS		(-44)
#define ENOENT		(-43)
#define ENFILE		(-42)
#define	EIO			(-36)
#define ENOSPC		(-34)

#define ESRCH		3
#define EINTR		4
#define EBADF		9
#define ENODEV		19
#define EINVAL		22
#define EMFILE		24

back to top