CryptoPkg: Add sleep function to BaseCryptLibMbedTls Timerwrapper

Add sleep() function to BaseCryptLibMbedTls library in
Timerwrapper.c

Encountering an unresolved external symbol error for sleep while
using the BaseCryptLibMbedTls library in RuntimeDxe

Signed-off-by: Hema Anmisha <hema.anmisha.kalavakolanu@intel.com>
This commit is contained in:
Hema Anmisha
2025-03-03 12:16:21 +05:30
committed by mergify[bot]
parent 55a887297c
commit d03e9e701b

View File

@ -191,3 +191,12 @@ gettimeofday (
tv->tv_usec = 0;
return 0;
}
/**sleep function. **/
unsigned int
sleep (
unsigned int seconds
)
{
return 0;
}