RTEMS CPU Kit with SuperCore
4.11.2
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
+
Data Fields
+
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
+
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
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
_
b
c
d
i
r
+
Typedefs
a
b
c
d
f
h
i
m
o
p
q
r
s
t
u
w
x
+
Enumerations
b
c
d
e
h
i
m
o
p
r
s
t
w
+
Enumerator
c
i
m
p
r
s
t
w
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
mnt
data0
chrisj
rtems
releases
rtems-release.git
4.11.2
ws-rtems
rtems-4.11.2
cpukit
score
include
rtems
seterr.h
Go to the documentation of this file.
1
10
/*
11
* COPYRIGHT (c) 1989-2006.
12
* On-Line Applications Research Corporation (OAR).
13
*
14
* The license and distribution terms for this file may be
15
* found in the file LICENSE in this distribution or at
16
* http://www.rtems.org/license/LICENSE.
17
*/
18
19
#ifndef _RTEMS_SETERR_H
20
#define _RTEMS_SETERR_H
21
30
#include <
errno.h
>
31
39
#define rtems_set_errno_and_return_value( _error, _value ) \
40
do { errno = ( _error ); return ( _value ); } while ( 0 )
41
48
#define rtems_set_errno_and_return_minus_one( _error ) \
49
rtems_set_errno_and_return_value( _error, -1 )
50
52
#endif
53
/* end of include file */
errno.h
Generated by
1.8.13