Windows NT 4.0 source code leak
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.

61 lines
977 B

4 years ago
  1. #if defined(R4000)
  2. // TITLE("Miscellaneous Kernel Functions")
  3. //++
  4. //
  5. // Copyright (c) 1991 Microsoft Corporation
  6. //
  7. // Module Name:
  8. //
  9. // j3flshbf.s
  10. //
  11. // Abstract:
  12. //
  13. // This module implements the system dependent kernel function to flush
  14. // the write buffer or otherwise synchronize writes on a MIPS R4000 Jazz
  15. // system.
  16. //
  17. // Author:
  18. //
  19. // David N. Cutler (davec) 24-Apr-1991
  20. //
  21. // Environment:
  22. //
  23. // Kernel mode only.
  24. //
  25. // Revision History:
  26. //
  27. //--
  28. #include "halmips.h"
  29. SBTTL("Flush Write Buffer")
  30. //++
  31. //
  32. // NTSTATUS
  33. // KeFlushWriteBuffer (
  34. // VOID
  35. // )
  36. //
  37. // Routine Description:
  38. //
  39. // This function flushes the write buffer on the current processor.
  40. //
  41. // Arguments:
  42. //
  43. // None.
  44. //
  45. // Return Value:
  46. //
  47. // None.
  48. //
  49. //--
  50. LEAF_ENTRY(KeFlushWriteBuffer)
  51. sync // synchronize writes
  52. j ra // return
  53. .end KeFlushWritebuffer
  54. #endif