Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
959 B

  1. title "PsxSignalThunk"
  2. ;++
  3. ;
  4. ; Copyright (c) 1990 Microsoft Corporation
  5. ;
  6. ; Module Name:
  7. ;
  8. ; psxthunk.asm
  9. ;
  10. ; Abstract:
  11. ;
  12. ; This module implements functions to support Posix signal delivery.
  13. ; Routines in this module are called with non-standard parameter
  14. ; passing.
  15. ;
  16. ; Author:
  17. ;
  18. ; Ellen Aycock-Wright (ellena) 10-Oct-1990
  19. ;
  20. ;
  21. ; Revision History:
  22. ;
  23. ;--
  24. .386p
  25. .xlist
  26. include ks386.inc
  27. .list
  28. extrn _PdxNullApiCaller@4:PROC
  29. extrn _PdxSignalDeliverer@16:PROC
  30. _TEXT SEGMENT DWORD USE32 PUBLIC 'CODE'
  31. ASSUME DS:FLAT, ES:FLAT, SS:NOTHING, FS:NOTHING, GS:NOTHING
  32. public __PdxNullApiCaller@4
  33. __PdxNullApiCaller@4 proc
  34. mov eax,0
  35. call _PdxNullApiCaller@4
  36. ; NOTREACHED
  37. __PdxNullApiCaller@4 endp
  38. public __PdxSignalDeliverer@16
  39. __PdxSignalDeliverer@16 proc
  40. mov eax,0
  41. call _PdxSignalDeliverer@16
  42. ; NOTREACHED
  43. __PdxSignalDeliverer@16 endp
  44. _TEXT ends
  45. end