Change many windows references to unix.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2186 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2007-01-07 19:31:19 +00:00
parent 6bb60d710b
commit 377fc2ae71
29 changed files with 62 additions and 62 deletions

View File

@@ -70,7 +70,7 @@ UnixFlushCpuDataCache (
Routine Description:
This routine would provide support for flushing the CPU data cache.
In the case of NT emulation environment, this flushing is not necessary and
In the case of UNIX emulation environment, this flushing is not necessary and
is thus not implemented.
Arguments:
@@ -92,13 +92,13 @@ Returns:
{
if (FlushType == EfiCpuFlushTypeWriteBackInvalidate) {
//
// Only WB flush is supported. We actually need do nothing on NT emulator
// Only WB flush is supported. We actually need do nothing on UNIX emulator
// environment. Classify this to follow EFI spec
//
return EFI_SUCCESS;
}
//
// Other flush types are not supported by NT emulator
// Other flush types are not supported by UNIX emulator
//
return EFI_UNSUPPORTED;
}