8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-30 20:03:03 +01:00
firebird-mirror/src/jrd/thread_proto.h
dimitr afb970dba1 1) Cleanup.
2) Catch exceptions in AST routines.
2008-03-12 16:53:57 +00:00

14 lines
219 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