8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Fix GCC build I accedentally broken by my previous commit

This commit is contained in:
skidder 2004-08-22 00:29:57 +00:00
parent 8027fd2726
commit aca7777af8
2 changed files with 14 additions and 14 deletions

View File

@ -267,20 +267,6 @@ struct ipccfg
typedef ipccfg *IPCCFG;
/* AST actions taken by SCH_ast() */
enum ast_t
{
AST_alloc,
AST_init,
AST_fini,
AST_check,
AST_disable,
AST_enable,
AST_enter,
AST_exit
};
/* AST thread scheduling macros */
#ifdef AST_THREAD

View File

@ -28,6 +28,20 @@
extern "C" {
/* AST actions taken by SCH_ast() */
enum ast_t
{
AST_alloc,
AST_init,
AST_fini,
AST_check,
AST_disable,
AST_enable,
AST_enter,
AST_exit
};
int API_ROUTINE gds__thread_enable(int);
void API_ROUTINE gds__thread_enter(void);
void API_ROUTINE gds__thread_exit(void);