sigaction.c 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* Copyright (C) 1997, 1998, 1999, 2000 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 Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. 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. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If not,
  13. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA. */
  15. #include <errno.h>
  16. #include <signal.h>
  17. #include <string.h>
  18. #include <sys/syscall.h>
  19. #include <bits/kernel_sigaction.h>
  20. #if defined __NR_rt_sigaction
  21. /* If ACT is not NULL, change the action for SIG to *ACT.
  22. If OACT is not NULL, put the old action for SIG in *OACT. */
  23. int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
  24. {
  25. int result;
  26. struct kernel_sigaction kact, koact;
  27. if (act) {
  28. kact.k_sa_handler = act->sa_handler;
  29. memcpy (&kact.sa_mask, &act->sa_mask, sizeof (kact.sa_mask));
  30. kact.sa_flags = act->sa_flags;
  31. # ifdef HAVE_SA_RESTORER
  32. kact.sa_restorer = act->sa_restorer;
  33. # endif
  34. }
  35. /* XXX The size argument hopefully will have to be changed to the
  36. real size of the user-level sigset_t. */
  37. result = __rt_sigaction(sig, act ? __ptrvalue (&kact) : NULL,
  38. oact ? __ptrvalue (&koact) : NULL, _NSIG / 8);
  39. if (oact && result >= 0) {
  40. oact->sa_handler = koact.k_sa_handler;
  41. memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (oact->sa_mask));
  42. oact->sa_flags = koact.sa_flags;
  43. # ifdef HAVE_SA_RESTORER
  44. oact->sa_restorer = koact.sa_restorer;
  45. # endif
  46. }
  47. return result;
  48. }
  49. #else
  50. /* If ACT is not NULL, change the action for SIG to *ACT.
  51. If OACT is not NULL, put the old action for SIG in *OACT. */
  52. int __libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
  53. {
  54. int result;
  55. struct old_kernel_sigaction kact, koact;
  56. if (act) {
  57. kact.k_sa_handler = act->sa_handler;
  58. kact.sa_mask = act->sa_mask.__val[0];
  59. kact.sa_flags = act->sa_flags;
  60. # ifdef HAVE_SA_RESTORER
  61. kact.sa_restorer = act->sa_restorer;
  62. # endif
  63. }
  64. result = __sigaction(sig, act ? __ptrvalue (&kact) : NULL,
  65. oact ? __ptrvalue (&koact) : NULL);
  66. if (oact && result >= 0) {
  67. oact->sa_handler = koact.k_sa_handler;
  68. oact->sa_mask.__val[0] = koact.sa_mask;
  69. oact->sa_flags = koact.sa_flags;
  70. # ifdef HAVE_SA_RESTORER
  71. oact->sa_restorer = koact.sa_restorer;
  72. # endif
  73. }
  74. return result;
  75. }
  76. #endif
  77. weak_alias(__libc_sigaction, sigaction)