Kernel & User time stub

This commit is contained in:
Alex
2022-11-14 07:42:37 +02:00
parent 6a05343e51
commit 042bce48a0
5 changed files with 79 additions and 51 deletions

View File

@ -46,7 +46,7 @@ namespace Driver
SmartLock(DriverDisplayPrintLock);
debug("Requesting %ld pages from the kernel...", Size);
void *ret = KernelAllocator.RequestPages(Size);
debug("Got %p", ret);
debug("Got %#lx", ret);
return ret;
}