vfork.S 617 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include <asm/unistd.h>
  2. #ifndef __NR_vfork
  3. #define __NR_vfork __NR_fork /* uClinux-2.0 only has fork which is vfork */
  4. #endif
  5. #ifdef __H8300S__
  6. .h8300s
  7. #else
  8. .h8300h
  9. #endif
  10. .text
  11. .align 2
  12. .globl _errno
  13. .globl _vfork
  14. #if defined __HAVE_ELF__
  15. .type vfork,@function
  16. #endif
  17. _vfork:
  18. mov.l @sp+, er1
  19. sub.l er0,er0
  20. mov.b #__NR_vfork,r0l
  21. trapa #0
  22. mov.l #-4096, er2
  23. cmp.l er0,er2
  24. bcs fix_errno
  25. jmp @er1 /* don't return, just jmp directly */
  26. fix_errno:
  27. neg.l er0
  28. mov.l er0,@_errno
  29. sub.l er0,er0
  30. dec.l #1,er0
  31. jmp @er1 /* don't return, just jmp directly */