From 78f6b007e7138df347cb9c527f1ebe01a32cfe3d Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Thu, 31 Aug 2017 14:48:55 -0400 Subject: Make msleep() be a thing Signed-off-by: Peter Jones --- lib/console.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/console.c') diff --git a/lib/console.c b/lib/console.c index 3fee403e..31ac110d 100644 --- a/lib/console.c +++ b/lib/console.c @@ -459,3 +459,9 @@ VOID setup_console (int text) uefi_call_wrapper(concon->SetMode, 2, concon, new_mode); } + +VOID +msleep(unsigned long msecs) +{ + uefi_call_wrapper(BS->Stall, 1, msecs); +} -- cgit v1.2.3