summaryrefslogtreecommitdiffstats
path: root/private/ntos/nthals/halx86/i386/xxflshbf.c
blob: 18a5ff5b4369409ea7e3a33f2794dcbd5fa5db9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*++

Copyright (c) 1990  Microsoft Corporation

Module Name:

    xxflshbf.c

Abstract:

    This module implements i386 machine dependent kernel functions to flush
    write buffers.

Author:

    David N. Cutler (davec) 26-Apr-1990

Environment:

    Kernel mode only.

Revision History:

--*/

#include "nthal.h"

VOID
KeFlushWriteBuffer (
    VOID
    )

/*++

Routine Description:

    This function flushes the write buffer on the current processor.

Arguments:

    None.

Return Value:

    None.

--*/

{

    return;
}