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.

52 lines
531 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. xxflshbf.c
  5. Abstract:
  6. This module implements i386 machine dependent kernel functions to flush
  7. write buffers.
  8. Author:
  9. David N. Cutler (davec) 26-Apr-1990
  10. Environment:
  11. Kernel mode only.
  12. Revision History:
  13. --*/
  14. #include "nthal.h"
  15. VOID
  16. KeFlushWriteBuffer (
  17. VOID
  18. )
  19. /*++
  20. Routine Description:
  21. This function flushes the write buffer on the current processor.
  22. Arguments:
  23. None.
  24. Return Value:
  25. None.
  26. --*/
  27. {
  28. return;
  29. }