summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uefi/rtl/uefi/sysheap.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/uefi/rtl/uefi/sysheap.inc b/uefi/rtl/uefi/sysheap.inc
index 20f67a043f..14d82cd93a 100644
--- a/uefi/rtl/uefi/sysheap.inc
+++ b/uefi/rtl/uefi/sysheap.inc
@@ -38,7 +38,7 @@ begin
allocatedPointer);
case status of
- EFI_SUCCESS : sysTable.ConOut^.OutputString(sysTable.ConOut, 'Success' + #13#10);
+ EFI_SUCCESS : sysTable.ConOut^.OutputString(sysTable.ConOut, 'Success in SysOSAlloc...' + #13#10);
EFI_OUT_OF_RESOURCES : sysTable.ConOut^.OutputString(sysTable.ConOut, 'OutOfResources' + #13#10);
EFI_INVALID_PARAMETER : sysTable.ConOut^.OutputString(sysTable.ConOut, 'InvalidParameter' + #13#10);
EFI_NOT_FOUND : sysTable.ConOut^.OutputString(sysTable.ConOut, 'NotFound' + #13#10);
@@ -52,6 +52,7 @@ end;
procedure SysOSFree(p: pointer; size: ptruint);
begin
+ sysTable.ConOut^.OutputString(sysTable.ConOut, '... in sysOSFree...' + #13#10);
// if heap isn't set, then nothing was allocated
// if SysHeap <> 0 then
// RtlFreeHeap(SysHeap, 0, p);