summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/seterr.h
blob: adce762dc94e89ae7d37b0c076a0f52992adafb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
 * @file
 *
 * @ingroup RTEMSAPISetErrno
 *
 * @brief This header file defines macros to set ``errno`` and return minus
 *   one.
 */

/*
 *  COPYRIGHT (c) 1989-2006.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifndef _RTEMS_SETERR_H
#define _RTEMS_SETERR_H

#include <errno.h>

/**
 * @defgroup RTEMSAPISetErrno Set Error Number Support
 *
 * @ingroup RTEMSAPI
 *
 * @{
 */

/**
 *  This is a helper macro which will set the variable errno and return
 *  the specified value to the caller.
 *
 *  @param[in] _error is the error code
 *  @param[in] _value is the value to return
 */
#define rtems_set_errno_and_return_value( _error, _value ) \
  do { errno = ( _error ); return ( _value ); } while ( 0 )

/**
 *  This is a helper macro which will set the variable errno and return
 *  -1 to the caller.  This pattern is common to many POSIX methods.
 *
 *  @param[in] _error is the error code
 */
#define rtems_set_errno_and_return_minus_one( _error ) \
  rtems_set_errno_and_return_value( _error, -1 )

/**@}*/
#endif
/* end of include file */