8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 04:03:03 +01:00
This commit is contained in:
asfernandes 2007-01-26 01:24:48 +00:00
parent 1b44692b7b
commit c3d64106e0
4 changed files with 11 additions and 11 deletions

View File

@ -6490,7 +6490,7 @@ static ISC_STATUS shutdown_dbb(thread_db* tdbb, Database* dbb, Attachment** rele
} }
// attach became invalid pointer // attach became invalid pointer
// if we have someone, intereted in that fact, inform him // if we have someone interested in that fact, inform him
if (released) if (released)
{ {
*released++ = attach; *released++ = attach;
@ -6537,7 +6537,7 @@ static ISC_STATUS shutdown_all()
{ {
dbb_next = dbb->dbb_next; dbb_next = dbb->dbb_next;
ISC_STATUS rc = shutdown_dbb(tdbb, dbb, 0); ISC_STATUS rc = shutdown_dbb(tdbb, dbb, NULL);
if (rc != FB_SUCCESS) if (rc != FB_SUCCESS)
{ {
if (initialized) if (initialized)
@ -6851,7 +6851,7 @@ void JRD_shutdown_all(bool asyncMode)
// defined SERVER_SHUTDOWN, performs full or partial shutdown // defined SERVER_SHUTDOWN, performs full or partial shutdown
// of database. SERVER_SHUTDOWN defined controls some other // of database. SERVER_SHUTDOWN defined controls some other
// aspects of operation, therefore was left "as is". // aspects of operation, therefore was left "as is".
// Who wants to invent better naem for it, please do it. // Who wants to invent better name for it, please do it.
void JRD_process_close() void JRD_process_close()
{ {

View File

@ -46,10 +46,10 @@ class dsql_req;
namespace YValve namespace YValve
{ {
// flags // flags
const UCHAR HANDLE_TRANSACTION_limbo = 1; const UCHAR HANDLE_TRANSACTION_limbo = 0x01;
const UCHAR HANDLE_BLOB_filter = 2; /* Blob is locally filtered */ const UCHAR HANDLE_BLOB_filter = 0x02; // Blob is locally filtered
const UCHAR HANDLE_STATEMENT_local = 4; /* Process DSQL statement locally */ const UCHAR HANDLE_STATEMENT_local = 0x04; // Process DSQL statement locally
const UCHAR HANDLE_STATEMENT_prepared = 8; const UCHAR HANDLE_STATEMENT_prepared = 0x08;
const UCHAR HANDLE_shutdown = 0x10; // Database shutdown const UCHAR HANDLE_shutdown = 0x10; // Database shutdown
// forwards // forwards