errno.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* gmp_errno, __gmp_exception -- exception handling and reporting.
  2.    THE FUNCTIONS IN THIS FILE, APART FROM gmp_errno, ARE FOR INTERNAL USE
  3.    ONLY.  THEY'RE ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR
  4.    DISAPPEAR COMPLETELY IN FUTURE GNU MP RELEASES.
  5. Copyright 2000, 2001, 2003 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include <stdlib.h>
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. int gmp_errno = 0;
  21. /* The deliberate divide by zero triggers an exception on most systems.  On
  22.    those where it doesn't, for example power and powerpc, use abort instead.
  23.    Enhancement: Perhaps raise(SIGFPE) (or the same with kill()) would be
  24.    better than abort.  Perhaps it'd be possible to get the BSD style
  25.    FPE_INTDIV_TRAP parameter in there too.  */
  26. void
  27. __gmp_exception (int error_bit)
  28. {
  29.   gmp_errno |= error_bit;
  30.   __gmp_junk = 10 / __gmp_0;
  31.   abort ();
  32. }
  33. /* These functions minimize the amount of code required in functions raising
  34.    exceptions.  Since they're "noreturn" and don't take any parameters, a
  35.    test and call might even come out as a simple conditional jump.  */
  36. void
  37. __gmp_sqrt_of_negative (void)
  38. {
  39.   __gmp_exception (GMP_ERROR_SQRT_OF_NEGATIVE);
  40. }
  41. void
  42. __gmp_divide_by_zero (void)
  43. {
  44.   __gmp_exception (GMP_ERROR_DIVISION_BY_ZERO);
  45. }