RetroArch
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Variables
a
b
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
g
i
l
m
o
p
q
r
s
t
u
v
x
+
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
q
r
s
t
v
+
Enumerator
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
u
x
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
é
Ά
Ή
Α
Δ
Ε
Κ
Ο
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
П
У
а
в
д
з
и
к
о
п
с
ф
ч
я
オ
キ
ス
チ
デ
レ
上
下
中
右
启
啟
回
実
屏
左
已
巻
支
显
次
聲
过
鍵
需
顯
게
구
너
넷
도
동
되
레
리
버
변
비
사
성
쉐
시
실
애
연
오
이
입
잘
조
죄
중
지
참
코
키
필
화
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
Ά
Ή
Α
Ε
Κ
Ο
К
П
а
д
з
к
オ
ス
デ
レ
上
下
中
右
启
啟
回
屏
左
巻
支
显
次
聲
顯
너
넷
동
레
버
비
시
잘
중
지
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
é
Δ
Ε
Κ
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
У
в
д
з
и
к
о
п
с
ф
ч
я
キ
チ
実
已
过
鍵
需
게
구
도
되
리
변
사
성
쉐
시
실
애
연
오
이
입
조
죄
참
코
키
필
화
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
deps
pthreads
need_errno.h
Go to the documentation of this file.
1
/***
2
* errno.h - system wide error numbers (set by system calls)
3
*
4
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
5
*
6
* Purpose:
7
* This file defines the system-wide error numbers (set by
8
* system calls). Conforms to the XENIX standard. Extended
9
* for compatibility with Uniforum standard.
10
* [System V]
11
*
12
* [Public]
13
*
14
****/
15
16
#ifndef _INC_ERRNO
17
#define _INC_ERRNO
18
19
#ifdef __cplusplus
20
extern
"C"
21
{
22
#endif
23
24
25
26
/* declare reference to errno */
27
28
extern
int
errno
;
29
30
/* Error Codes */
31
32
#define EPERM 1
33
#define ENOENT 2
34
#define ESRCH 3
35
#define EINTR 4
36
#define EIO 5
37
#define ENXIO 6
38
#define E2BIG 7
39
#define ENOEXEC 8
40
#define EBADF 9
41
#define ECHILD 10
42
#define EAGAIN 11
43
#define ENOMEM 12
44
#define EACCES 13
45
#define EFAULT 14
46
#define EBUSY 16
47
#define EEXIST 17
48
#define EXDEV 18
49
#define ENODEV 19
50
#define ENOTDIR 20
51
#define EISDIR 21
52
#define EINVAL 22
53
#define ENFILE 23
54
#define EMFILE 24
55
#define ENOTTY 25
56
#define EFBIG 27
57
#define ENOSPC 28
58
#define ESPIPE 29
59
#define EROFS 30
60
#define EMLINK 31
61
#define EPIPE 32
62
#define EDOM 33
63
#define ERANGE 34
64
#define EDEADLK 36
65
66
/* defined differently in winsock.h on WinCE */
67
#ifndef ENAMETOOLONG
68
#define ENAMETOOLONG 38
69
#endif
70
71
#define ENOLCK 39
72
#define ENOSYS 40
73
74
/* defined differently in winsock.h on WinCE */
75
#ifndef ENOTEMPTY
76
#define ENOTEMPTY 41
77
#endif
78
79
#define EILSEQ 42
80
81
/*
82
* Support EDEADLOCK for compatibiity with older MS-C versions.
83
*/
84
#define EDEADLOCK EDEADLK
85
86
#ifdef __cplusplus
87
}
88
#endif
89
90
#endif
/* _INC_ERRNO */
errno
int errno
Generated by
1.8.15