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.

54 lines
1.1 KiB

  1. //
  2. // No Check-in Source Code.
  3. //
  4. // Do not make this code available to non-Microsoft personnel
  5. // without Intel's express permission
  6. //
  7. /**
  8. *** Copyright (C) 1996-97 Intel Corporation. All rights reserved.
  9. ***
  10. *** The information and source code contained herein is the exclusive
  11. *** property of Intel Corporation and may not be disclosed, examined
  12. *** or reproduced in whole or in part without explicit written authorization
  13. *** from the company.
  14. **/
  15. //++
  16. //
  17. // Module Name:
  18. //
  19. // psxthunk.s
  20. //
  21. // Abstract:
  22. //
  23. // This module implements all Win32 thunks. This includes the
  24. /// first level thread starter...
  25. //
  26. // Author:
  27. //
  28. // 12-Oct-1995
  29. //
  30. // Revision History:
  31. //
  32. //--
  33. #include "ksia64.h"
  34. .file "psxthunk.s"
  35. .global .PdxNullApiCaller
  36. .global .PdxSignalDeliverer
  37. LEAF_ENTRY(_PdxNullApiCaller)
  38. LEAF_SETUP(0, 0, 1, 0)
  39. br.sptk.clr .PdxNullApiCaller
  40. // NOTREACHED
  41. LEAF_EXIT(_PdxNullApiCaller)
  42. LEAF_ENTRY(_PdxSignalDeliverer)
  43. LEAF_SETUP(0, 0, 4, 0)
  44. br.sptk.clr .PdxSignalDeliverer
  45. // NOTREACHED
  46. LEAF_EXIT(_PdxSignalDeliverer)