Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenlazyrite.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS Kernel 00004 * FILE: ntoskrnl/cache/lazyrite.c 00005 * PURPOSE: Logging and configuration routines 00006 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) 00007 */ 00008 00009 /* INCLUDES *******************************************************************/ 00010 00011 #include <ntoskrnl.h> 00012 #include "newcc.h" 00013 //#define NDEBUG 00014 #include <debug.h> 00015 00016 /* GLOBALS ********************************************************************/ 00017 00018 KEVENT CcpLazyWriteEvent; 00019 00020 /* FUNCTIONS ******************************************************************/ 00021 00022 VOID NTAPI 00023 CcpLazyWriteThread(PVOID Unused) 00024 { 00025 /* Not implemented */ 00026 } 00027 00028 NTSTATUS 00029 NTAPI 00030 CcWaitForCurrentLazyWriterActivity(VOID) 00031 { 00032 //KeWaitForSingleObject(&CcpLazyWriteEvent, Executive, KernelMode, FALSE, NULL); 00033 return STATUS_SUCCESS; 00034 } 00035 00036 /* EOF */ Generated on Fri May 25 2012 04:35:27 for ReactOS by
1.7.6.1
|