mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
37 lines
872 B
C
37 lines
872 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Kernel
|
|
* FILE: ntoskrnl/cache/lazyrite.c
|
|
* PURPOSE: Logging and configuration routines
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#include "newcc.h"
|
|
//#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
/* GLOBALS ********************************************************************/
|
|
|
|
KEVENT CcpLazyWriteEvent;
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
VOID NTAPI
|
|
CcpLazyWriteThread(PVOID Unused)
|
|
{
|
|
/* Not implemented */
|
|
}
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
CcWaitForCurrentLazyWriterActivity(VOID)
|
|
{
|
|
//KeWaitForSingleObject(&CcpLazyWriteEvent, Executive, KernelMode, FALSE, NULL);
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
/* EOF */
|