summaryrefslogtreecommitdiffstats
path: root/efi_memtest/MemtestEfi.c
diff options
context:
space:
mode:
authorRegina König2020-07-21 22:53:45 +0200
committerRegina König2020-07-21 22:53:45 +0200
commit0ed6636f05c27d431d0d65eb50fffa9b833acac5 (patch)
tree9c7c318fd9b6413b1136a6551c27b9e793a52cf8 /efi_memtest/MemtestEfi.c
parentExtended README file (diff)
downloadmemtest86-0ed6636f05c27d431d0d65eb50fffa9b833acac5.tar.gz
memtest86-0ed6636f05c27d431d0d65eb50fffa9b833acac5.tar.xz
memtest86-0ed6636f05c27d431d0d65eb50fffa9b833acac5.zip
renamed one application
Diffstat (limited to 'efi_memtest/MemtestEfi.c')
-rw-r--r--efi_memtest/MemtestEfi.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/efi_memtest/MemtestEfi.c b/efi_memtest/MemtestEfi.c
index b91a236..24ea0b9 100644
--- a/efi_memtest/MemtestEfi.c
+++ b/efi_memtest/MemtestEfi.c
@@ -15,7 +15,7 @@ UefiMain (
)
{
- Print(L"JHGK\n");
+ Print(L"MemtestEfi started\n");
/*int n = test_fct_todo_remove(32);
Print(L"Return Value: %d\n", n);
print_usage();
@@ -43,6 +43,8 @@ UefiMain (
&handleBuffer
);
+ Print(L"Number of handles found: %d\n", handleCount);
+
if (!EFI_ERROR (efiStatus)) {
for (HandleIndex = 0; HandleIndex < handleCount; HandleIndex++) {
//
@@ -53,6 +55,9 @@ UefiMain (
&ProtocolGuidArray,
&ArrayCount
);
+
+ Print(L"Number of Protocols per Handle: %d\n", ArrayCount);
+
if (!EFI_ERROR (efiStatus)) {
for (ProtocolIndex = 0; ProtocolIndex < ArrayCount; ProtocolIndex++) {
//