2
0

signal.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * i386 dependent signal definitions
  3. *
  4. * Copyright (c) 2013 Stacey D. Son
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include "qemu/osdep.h"
  20. #include "qemu.h"
  21. /*
  22. * Compare to i386/i386/machdep.c sendsig()
  23. * Assumes that target stack frame memory is locked.
  24. */
  25. abi_long set_sigtramp_args(CPUX86State *env, int sig,
  26. struct target_sigframe *frame,
  27. abi_ulong frame_addr,
  28. struct target_sigaction *ka)
  29. {
  30. /* XXX return -TARGET_EOPNOTSUPP; */
  31. return 0;
  32. }
  33. /*
  34. * Compare to i386/i386/exec_machdep.c sendsig()
  35. * Assumes that the memory is locked if frame points to user memory.
  36. */
  37. abi_long setup_sigframe_arch(CPUX86State *env, abi_ulong frame_addr,
  38. struct target_sigframe *frame, int flags)
  39. {
  40. target_mcontext_t *mcp = &frame->sf_uc.uc_mcontext;
  41. get_mcontext(env, mcp, flags);
  42. return 0;
  43. }
  44. /* Compare to i386/i386/machdep.c get_mcontext() */
  45. abi_long get_mcontext(CPUX86State *regs, target_mcontext_t *mcp, int flags)
  46. {
  47. /* XXX */
  48. return -TARGET_EOPNOTSUPP;
  49. }
  50. /* Compare to i386/i386/machdep.c set_mcontext() */
  51. abi_long set_mcontext(CPUX86State *regs, target_mcontext_t *mcp, int srflag)
  52. {
  53. /* XXX */
  54. return -TARGET_EOPNOTSUPP;
  55. }
  56. abi_long get_ucontext_sigreturn(CPUX86State *regs, abi_ulong target_sf,
  57. abi_ulong *target_uc)
  58. {
  59. /* XXX */
  60. *target_uc = 0;
  61. return -TARGET_EOPNOTSUPP;
  62. }