Leaked source code of windows server 2003
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.

46 lines
554 B

  1. /*++
  2. Copyright (c) 2002-2002 Microsoft Corporation
  3. Module Name:
  4. scavenger.h
  5. Abstract:
  6. The cache scavenger interface
  7. Author:
  8. Karthik Mahesh (KarthikM) Feb-2002
  9. Revision History:
  10. --*/
  11. #ifndef _SCAVENGER_H_
  12. #define _SCAVENGER_H_
  13. NTSTATUS
  14. UlInitializeScavengerThread(
  15. VOID
  16. );
  17. VOID
  18. UlTerminateScavengerThread(
  19. VOID
  20. );
  21. //
  22. // Set the "cache size exceeded limit" event
  23. //
  24. VOID
  25. UlSetScavengerLimitEvent(
  26. VOID
  27. );
  28. extern SIZE_T g_UlScavengerTrimMB;
  29. #endif