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.

39 lines
409 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 2000
  3. Module Name:
  4. sysutils.c
  5. Abstract:
  6. This file contains system utility routines
  7. Environment:
  8. kernel mode only
  9. Revision History:
  10. --*/
  11. #include <ntos.h>
  12. VOID
  13. iSpAttachProcess(
  14. IN PEPROCESS Process
  15. )
  16. {
  17. KeAttachProcess((PKPROCESS) Process);
  18. return;
  19. }
  20. VOID
  21. iSpDetachProcess(
  22. VOID
  23. )
  24. {
  25. KeDetachProcess ();
  26. return;
  27. }