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

#if defined(R4000)
//#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 $")
// TITLE("Miscellaneous Kernel Functions")
//++
//
// Copyright (c) 1991-1993 Microsoft Corporation
//
// Module Name:
//
// j4flshbf.s
//
// Abstract:
//
// This module implements the system dependent kernel function to flush
// the write buffer or otherwise synchronize writes on a MIPS R4000 Jazz
// system.
//
//--
#include "halmips.h"
SBTTL("Flush Write Buffer")
//++
//
// NTSTATUS
// KeFlushWriteBuffer (
// VOID
// )
//
// Routine Description:
//
// This function flushes the write buffer on the current processor.
//
// Arguments:
//
// None.
//
// Return Value:
//
// None.
//
//--
LEAF_ENTRY(KeFlushWriteBuffer)
sync // synchronize writes
j ra // return
.end KeFlushWritebuffer
#endif