vfork.S 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Copyright (C) 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
  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. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <sysdep-cancel.h>
  17. #ifdef SHARED
  18. .LLGETPC0:
  19. retl
  20. add %o7, %o0, %o0
  21. #endif
  22. ENTRY(__vfork)
  23. #ifdef SHARED
  24. mov %o7, %o1
  25. sethi %hi(_GLOBAL_OFFSET_TABLE_-4), %o0
  26. call .LLGETPC0
  27. add %o0, %lo(_GLOBAL_OFFSET_TABLE_+4), %o0
  28. sethi %hi(__libc_pthread_functions), %o2
  29. mov %o1, %o7
  30. or %o2, %lo(__libc_pthread_functions), %o2
  31. ldx [%o0 + %o2], %o2
  32. ldx [%o2], %o0
  33. #else
  34. .weak pthread_create
  35. sethi %hi(pthread_create), %o0
  36. or %o0, %lo(pthread_create), %o0
  37. #endif
  38. #if defined SHARED && !defined BROKEN_SPARC_WDISP22
  39. cmp %o0, 0
  40. bne HIDDEN_JUMPTARGET(__fork)
  41. #else
  42. brnz,pn %o0, 1f
  43. #endif
  44. mov __NR_vfork, %g1
  45. ta 0x6d
  46. bcs,pn %xcc, __syscall_error_handler
  47. nop
  48. sub %o1, 1, %o1
  49. retl
  50. and %o0, %o1, %o0
  51. #if !defined SHARED || defined BROKEN_SPARC_WDISP22
  52. 1: mov %o7, %g1
  53. call HIDDEN_JUMPTARGET(__fork)
  54. mov %g1, %o7
  55. #endif
  56. SYSCALL_ERROR_HANDLER
  57. PSEUDO_END (__vfork)
  58. libc_hidden_def (__vfork)
  59. weak_alias (__vfork, vfork)