master
h 10 lines 203 Bytes
Raw
1 // SPDX-License-Identifier: GPL-3.0-or-later
2
3 #ifndef NETDATA_SLEEP_H
4 #define NETDATA_SLEEP_H
5
6 void yield_the_processor(void);
7 void tinysleep(void);
8 void microsleep(usec_t ut);
9
10 #endif //NETDATA_SLEEP_H