gnu_error.cc
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:2k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /* 
  2. Copyright (C) 1990 Free Software Foundation
  3.     written by Doug Lea (dl@rocky.oswego.edu)
  4. This file is part of the GNU C++ Library.  This library is free
  5. software; you can redistribute it and/or modify it under the terms of
  6. the GNU Library General Public License as published by the Free
  7. Software Foundation; either version 2 of the License, or (at your
  8. option) any later version.  This library is distributed in the hope
  9. that it will be useful, but WITHOUT ANY WARRANTY; without even the
  10. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE.  See the GNU Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #ifdef __GNUG__
  17. #pragma implementation
  18. #endif
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <builtin.h>
  22. #ifdef __GNUC__
  23. typedef _VOLATILE_VOID (*NoReturnFunc)(void);
  24. /* Cast abort to a _VOLATILE_VOID function, even if <stdlib.h> differs.
  25. This is to avoid a warning from g++ that a `volatile' function does return. */
  26. #define ABORT() ((NoReturnFunc)abort)()
  27. #else
  28. #define ABORT() abort()
  29. #endif
  30. _VOLATILE_VOID default_one_arg_error_handler(const char* msg)
  31. {
  32.   fputs("Error: ", stderr);
  33.   fputs(msg, stderr);
  34.   fputs("n", stderr);
  35.   ABORT();
  36. }
  37. _VOLATILE_VOID default_two_arg_error_handler(const char* kind, const char* msg)
  38. {
  39.   fputs(kind, stderr);
  40.   fputs(" Error: ", stderr);
  41.   fputs(msg, stderr);
  42.   fputs("n", stderr);
  43.   ABORT();
  44. }
  45. two_arg_error_handler_t lib_error_handler = default_two_arg_error_handler;
  46. two_arg_error_handler_t set_lib_error_handler(two_arg_error_handler_t f)
  47. {
  48.   two_arg_error_handler_t old = lib_error_handler;
  49.   lib_error_handler = f;
  50.   return old;
  51. }