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.
77 lines
1.1 KiB
77 lines
1.1 KiB
/*++
|
|
|
|
Copyright (c) 1995 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tc.h
|
|
|
|
Abstract:
|
|
|
|
This include file defines the Translation Cache interface.
|
|
|
|
Author:
|
|
|
|
Barry Bond (barrybo) creation-date 29-Jul-1995
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _TC_H_
|
|
#define _TC_H_
|
|
|
|
extern ULONG TranslationCacheTimestamp;
|
|
extern DWORD TranslationCacheFlags;
|
|
|
|
BOOL
|
|
InitializeTranslationCache(
|
|
VOID
|
|
);
|
|
|
|
PCHAR
|
|
AllocateTranslationCache(
|
|
ULONG Size
|
|
);
|
|
|
|
VOID
|
|
FreeUnusedTranslationCache(
|
|
PCHAR StartOfFree
|
|
);
|
|
|
|
VOID
|
|
PauseAllActiveTCReaders(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
FlushTranslationCache(
|
|
PVOID IntelAddr,
|
|
DWORD IntelLength
|
|
);
|
|
|
|
BOOL
|
|
AddressInTranslationCache(
|
|
DWORD Addr
|
|
);
|
|
|
|
#if DBG
|
|
VOID
|
|
ASSERTPtrInTC(
|
|
PVOID ptr
|
|
);
|
|
|
|
#define ASSERTPtrInTCOrZero(ptr) { \
|
|
if (ptr) { \
|
|
ASSERTPtrInTC(ptr); \
|
|
} \
|
|
}
|
|
|
|
|
|
#else
|
|
#define ASSERTPtrInTC(ptr)
|
|
#define ASSERTPtrInTCOrZero(ptr)
|
|
#endif
|
|
|
|
#endif
|