mirror of
https://gitlab.com/qemu-project/edk2.git
synced 2025-10-30 07:56:39 +08:00
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:
committed by
mergify[bot]
parent
55a887297c
commit
d03e9e701b
@ -191,3 +191,12 @@ gettimeofday (
|
||||
tv->tv_usec = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**sleep function. **/
|
||||
unsigned int
|
||||
sleep (
|
||||
unsigned int seconds
|
||||
)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user