mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:46:13 +00:00
Implemented CsrTerminateProcess.
svn path=/trunk/; revision=2940
This commit is contained in:
parent
be75fc2273
commit
72d2c10489
1 changed files with 10 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: process.c,v 1.16 2001/11/20 02:29:45 dwelch Exp $
|
/* $Id: process.c,v 1.17 2002/05/07 22:46:23 hbirr Exp $
|
||||||
*
|
*
|
||||||
* reactos/subsys/csrss/api/process.c
|
* reactos/subsys/csrss/api/process.c
|
||||||
*
|
*
|
||||||
|
@ -198,15 +198,16 @@ CSR_API(CsrCreateProcess)
|
||||||
|
|
||||||
CSR_API(CsrTerminateProcess)
|
CSR_API(CsrTerminateProcess)
|
||||||
{
|
{
|
||||||
Reply->Header.MessageSize = sizeof(CSRSS_API_REPLY)
|
NTSTATUS Status;
|
||||||
- sizeof(LPC_MESSAGE_HEADER);
|
|
||||||
Reply->Header.DataSize = sizeof(CSRSS_API_REPLY);
|
|
||||||
|
|
||||||
DbgPrint("CSR: %s not implemented.\n", __FUNCTION__);
|
|
||||||
|
|
||||||
Reply->Status = STATUS_NOT_IMPLEMENTED;
|
Reply->Header.MessageSize = sizeof(CSRSS_API_REPLY)
|
||||||
|
- sizeof(LPC_MESSAGE_HEADER);
|
||||||
return(STATUS_NOT_IMPLEMENTED);
|
Reply->Header.DataSize = sizeof(CSRSS_API_REPLY);
|
||||||
|
|
||||||
|
Status = CsrFreeProcessData(ProcessData->ProcessId);
|
||||||
|
|
||||||
|
Reply->Status = Status;
|
||||||
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
CSR_API(CsrConnectProcess)
|
CSR_API(CsrConnectProcess)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue