1 /**
2  * Copyright Notice:
3  * Copyright 2022 DMTF. All rights reserved.
4  * License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md
5  **/
6 
7 #include <base.h>
8 
9 /**
10  * Suspends the execution of the current thread until the time-out interval elapses.
11  *
12  * @param microseconds     The time interval for which execution is to be suspended, in microseconds.
13  *
14  **/
libspdm_sleep(uint64_t microseconds)15 void libspdm_sleep(uint64_t microseconds)
16 {
17 }
18