mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 17:23:03 +01:00
17 lines
220 B
C
17 lines
220 B
C
#ifndef JRD_THREAD_PROTO_H
|
|
#define JRD_THREAD_PROTO_H
|
|
|
|
#include "../common/thd.h"
|
|
|
|
inline void THREAD_SLEEP(ULONG msecs)
|
|
{
|
|
THD_sleep(msecs);
|
|
}
|
|
|
|
inline void THREAD_YIELD()
|
|
{
|
|
THD_yield();
|
|
}
|
|
|
|
#endif // JRD_THREAD_PROTO_H
|