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.

53 lines
991 B

4 years ago
  1. #if defined(R4000)
  2. //#pragma comment(exestr, "$Header: /usr4/winnt/SOURCES/ddk35/src/hal/halsni/mips/RCS/j4flshbf.s,v 1.1 1994/10/13 15:47:06 holli Exp $")
  3. // TITLE("Miscellaneous Kernel Functions")
  4. //++
  5. //
  6. // Copyright (c) 1991-1993 Microsoft Corporation
  7. //
  8. // Module Name:
  9. //
  10. // j4flshbf.s
  11. //
  12. // Abstract:
  13. //
  14. // This module implements the system dependent kernel function to flush
  15. // the write buffer or otherwise synchronize writes on a MIPS R4000 Jazz
  16. // system.
  17. //
  18. //--
  19. #include "halmips.h"
  20. SBTTL("Flush Write Buffer")
  21. //++
  22. //
  23. // NTSTATUS
  24. // KeFlushWriteBuffer (
  25. // VOID
  26. // )
  27. //
  28. // Routine Description:
  29. //
  30. // This function flushes the write buffer on the current processor.
  31. //
  32. // Arguments:
  33. //
  34. // None.
  35. //
  36. // Return Value:
  37. //
  38. // None.
  39. //
  40. //--
  41. LEAF_ENTRY(KeFlushWriteBuffer)
  42. sync // synchronize writes
  43. j ra // return
  44. .end KeFlushWritebuffer
  45. #endif