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 Dec 26, 2024
1 parent 9e65374 commit c30c120
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 c30c120

Please sign in to comment.