assert.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1991,1992,1994-2001,2003,2004 Free Software Foundation, Inc.
  2.    This file is part of the GNU C Library.
  3.    The GNU C Library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Lesser General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2.1 of the License, or (at your option) any later version.
  7.    The GNU C Library is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.    Lesser General Public License for more details.
  11.    You should have received a copy of the GNU Lesser General Public
  12.    License along with the GNU C Library; if not, write to the Free
  13.    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14.    02111-1307 USA.  */
  15. /*
  16.  * ISO C99 Standard: 7.2 Diagnostics <assert.h>
  17.  */
  18. #ifdef _ASSERT_H
  19. # undef _ASSERT_H
  20. # undef assert
  21. # undef __ASSERT_VOID_CAST
  22. # ifdef __USE_GNU
  23. #  undef assert_perror
  24. # endif
  25. #endif /* assert.h */
  26. #define _ASSERT_H 1
  27. #include <features.h>
  28. #if defined __cplusplus && __GNUC_PREREQ (2,95)
  29. # define __ASSERT_VOID_CAST static_cast<void>
  30. #else
  31. # define __ASSERT_VOID_CAST (void)
  32. #endif
  33. /* void assert (int expression);
  34.    If NDEBUG is defined, do nothing.
  35.    If not, and EXPRESSION is zero, print an error message and abort.  */
  36. #ifdef NDEBUG
  37. # define assert(expr) (__ASSERT_VOID_CAST (0))
  38. /* void assert_perror (int errnum);
  39.    If NDEBUG is defined, do nothing.  If not, and ERRNUM is not zero, print an
  40.    error message with the error text for ERRNUM and abort.
  41.    (This is a GNU extension.) */
  42. # ifdef __USE_GNU
  43. #  define assert_perror(errnum) (__ASSERT_VOID_CAST (0))
  44. # endif
  45. #else /* Not NDEBUG.  */
  46. __BEGIN_DECLS
  47. /* This prints an "Assertion failed" message and aborts.  */
  48. extern void __assert_fail (__const char *__assertion, __const char *__file,
  49.    unsigned int __line, __const char *__function)
  50.      __THROW __attribute__ ((__noreturn__));
  51. /* Likewise, but prints the error text for ERRNUM.  */
  52. extern void __assert_perror_fail (int __errnum, __const char *__file,
  53.   unsigned int __line,
  54.   __const char *__function)
  55.      __THROW __attribute__ ((__noreturn__));
  56. /* The following is not at all used here but needed for standard
  57.    compliance.  */
  58. extern void __assert (const char *__assertion, const char *__file, int __line)
  59.      __THROW __attribute__ ((__noreturn__));
  60. __END_DECLS
  61. # define assert(expr) 
  62.   (__ASSERT_VOID_CAST ((expr) ? 0 :       
  63.        (__assert_fail (__STRING(expr), __FILE__, __LINE__,    
  64.        __ASSERT_FUNCTION), 0)))
  65. # ifdef __USE_GNU
  66. #  define assert_perror(errnum) 
  67.   (__ASSERT_VOID_CAST (!(errnum) ? 0 :       
  68.        (__assert_perror_fail ((errnum), __FILE__, __LINE__,   
  69.       __ASSERT_FUNCTION), 0)))
  70. # endif
  71. /* Version 2.4 and later of GCC define a magical variable `__PRETTY_FUNCTION__'
  72.    which contains the name of the function currently being defined.
  73.    This is broken in G++ before version 2.6.
  74.    C9x has a similar variable called __func__, but prefer the GCC one since
  75.    it demangles C++ function names.  */
  76. # if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
  77. #   define __ASSERT_FUNCTION __PRETTY_FUNCTION__
  78. # else
  79. #  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
  80. #   define __ASSERT_FUNCTION __func__
  81. #  else
  82. #   define __ASSERT_FUNCTION ((__const char *) 0)
  83. #  endif
  84. # endif
  85. #endif /* NDEBUG.  */