aeabi_sighandlers.S 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Link-time constants for ARM EABI - signal handlers.
  2. Copyright (C) 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. In addition to the permissions in the GNU Lesser General Public
  9. License, the Free Software Foundation gives you unlimited
  10. permission to link the compiled version of this file with other
  11. programs, and to distribute those programs without any restriction
  12. coming from the use of this file. (The GNU Lesser General Public
  13. License restrictions do apply in other respects; for example, they
  14. cover modification of the file, and distribution when not linked
  15. into another program.)
  16. Note that people who make modified versions of this file are not
  17. obligated to grant this special exception for their modified
  18. versions; it is their choice whether to do so. The GNU Lesser
  19. General Public License gives permission to release a modified
  20. version without this exception; this exception also makes it
  21. possible to release a modified version which carries forward this
  22. exception.
  23. The GNU C Library is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  26. Lesser General Public License for more details.
  27. You should have received a copy of the GNU Lesser General Public
  28. License along with the GNU C Library; if not, see
  29. <http://www.gnu.org/licenses/>. */
  30. /* The ARM EABI defines these as "functions". */
  31. .global __aeabi_SIG_DFL
  32. .hidden __aeabi_SIG_DFL
  33. .type __aeabi_SIG_DFL, %function
  34. .set __aeabi_SIG_DFL, 0
  35. .global __aeabi_SIG_IGN
  36. .hidden __aeabi_SIG_IGN
  37. .type __aeabi_SIG_IGN, %function
  38. .set __aeabi_SIG_IGN, 1
  39. .global __aeabi_SIG_ERR
  40. .hidden __aeabi_SIG_ERR
  41. .type __aeabi_SIG_ERR, %function
  42. .set __aeabi_SIG_ERR, -1