Skip to content

Commit

Permalink
CryptoPkg: Add sleep() function to BaseCryptLibMbedTls
Browse files Browse the repository at this point in the history
In BaseCryptLib sleep() function is defined,
apply the same sleep function to BaseCryptLibMbedTls

Signed-off-by: "Kalavakolanu, Hema Anmisha" <[email protected]>
  • Loading branch information
HemaAnmisha committed Jan 2, 2025
1 parent 9e65374 commit eefcba9
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ gmtime (
return NULL;
}

/**sleep function. **/
unsigned int
sleep (
unsigned int seconds
)
{
return 0;
}

/**_time64 function. **/
time_t
_time64 (
Expand Down

0 comments on commit eefcba9

Please sign in to comment.