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

/*++
Copyright (C) Microsoft Corporation, 2000
Module Name:
sysutils.c
Abstract:
This file contains system utility routines
Environment:
kernel mode only
Revision History:
--*/
#include <ntos.h>
VOID
iSpAttachProcess(
IN PEPROCESS Process
)
{
KeAttachProcess((PKPROCESS) Process);
return;
}
VOID
iSpDetachProcess(
VOID
)
{
KeDetachProcess ();
return;
}