mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-30 20:03:03 +01:00
afb970dba1
2) Catch exceptions in AST routines.
14 lines
219 B
C
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
|