~ubuntu-branches/ubuntu/gutsy/avr-libc/gutsy

« back to all changes in this revision

Viewing changes to include/assert.h

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2006-11-15 21:12:47 UTC
  • mfrom: (3.1.2 feisty)
  • Revision ID: james.westby@ubuntu.com-20061115211247-b7qhgnb6o49v5zsg
Tags: 1:1.4.5-2
* Convertion to debheler fixed (closes: #398220)
* Reference to /usr/share/common-licenses in copyright file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2005, Joerg Wunsch
 
2
   All rights reserved.
 
3
 
 
4
   Portions of documentation Copyright (c) 1991, 1993
 
5
   The Regents of the University of California.
 
6
 
 
7
   All rights reserved.
 
8
 
 
9
   Redistribution and use in source and binary forms, with or without
 
10
   modification, are permitted provided that the following conditions are met:
 
11
 
 
12
   * Redistributions of source code must retain the above copyright
 
13
     notice, this list of conditions and the following disclaimer.
 
14
 
 
15
   * Redistributions in binary form must reproduce the above copyright
 
16
     notice, this list of conditions and the following disclaimer in
 
17
     the documentation and/or other materials provided with the
 
18
     distribution.
 
19
 
 
20
   * Neither the name of the copyright holders nor the names of
 
21
     contributors may be used to endorse or promote products derived
 
22
     from this software without specific prior written permission.
 
23
 
 
24
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
25
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
26
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
27
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
28
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
29
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
30
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
31
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
32
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
33
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
34
  POSSIBILITY OF SUCH DAMAGE.
 
35
 
 
36
  $Id: assert.h,v 1.2 2005/09/13 13:29:54 joerg_wunsch Exp $
 
37
*/
 
38
 
 
39
/** \defgroup avr_assert <assert.h>: Diagnostics
 
40
    \code #include <assert.h> \endcode
 
41
 
 
42
    This header file defines a debugging aid.
 
43
 
 
44
    As there is no standard error output stream available for many
 
45
    applications using this library, the generation of a printable
 
46
    error message is not enabled by default.  These messages will
 
47
    only be generated if the application defines the macro
 
48
 
 
49
    \code __ASSERT_USE_STDERR \endcode
 
50
 
 
51
    before including the \c <assert.h> header file.  By default,
 
52
    only abort() will be called to halt the application.
 
53
*/
 
54
 
 
55
/*@{*/
 
56
 
 
57
/*
 
58
 * The ability to include this file (with or without NDEBUG) is a
 
59
 * feature.
 
60
 */
 
61
 
 
62
#undef assert
 
63
 
 
64
#if defined(__DOXYGEN__)
 
65
/**
 
66
 * \def assert
 
67
 * \param expression Expression to test for.
 
68
 *
 
69
 * The assert() macro tests the given expression and if it is false,
 
70
 * the calling process is terminated.  A diagnostic message is written
 
71
 * to stderr and the function abort() is called, effectively
 
72
 * terminating the program.
 
73
 *
 
74
 * If expression is true, the assert() macro does nothing.
 
75
 *
 
76
 * The assert() macro may be removed at compile time by defining
 
77
 * NDEBUG as a macro (e.g., by using the compiler option -DNDEBUG).
 
78
 */
 
79
#  define assert(expression)
 
80
 
 
81
#else /* !DOXYGEN */
 
82
 
 
83
#  if defined(NDEBUG)
 
84
#    define assert(e)   ((void)0)
 
85
#  else /* !NDEBUG */
 
86
#    if defined(__ASSERT_USE_STDERR)
 
87
#      define assert(e) ((e) ? (void)0 : \
 
88
                         __assert(__func__, __FILE__, __LINE__, #e))
 
89
#    else /* !__ASSERT_USE_STDERR */
 
90
#      define assert(e) ((e) ? (void)0 : abort())
 
91
#    endif /* __ASSERT_USE_STDERR */
 
92
#  endif /* NDEBUG */
 
93
#endif /* DOXYGEN */
 
94
 
 
95
#ifdef __cplusplus
 
96
extern "C" {
 
97
#endif
 
98
 
 
99
#if !defined(__DOXYGEN__)
 
100
 
 
101
extern void __assert(const char *__func, const char *__file,
 
102
                     int __lineno, const char *__sexp);
 
103
 
 
104
#endif /* not __DOXYGEN__ */
 
105
 
 
106
#ifdef __cplusplus
 
107
}
 
108
#endif
 
109
 
 
110
/*@}*/
 
111
/* EOF */