diff options
author | drh <drh@noemail.net> | 2006-07-26 13:43:30 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-07-26 13:43:30 +0000 |
commit | 15ca1df1bf54d35d88a8b94540125a68ecd7e5a6 (patch) | |
tree | 01bb7575c784831306c68198b70c228a6ecf9fb6 /src/sqliteInt.h | |
parent | 881feaa04380c6c79db9a763048c2f3d04c3a73e (diff) | |
download | sqlite-15ca1df1bf54d35d88a8b94540125a68ecd7e5a6.tar.gz sqlite-15ca1df1bf54d35d88a8b94540125a68ecd7e5a6.zip |
More work toward getting sqlite3_interrupt() to work from separate
threads. Ticket #1897. (CVS 3336)
FossilOrigin-Name: e431131d47481f9fc64c498e8934b10a96b0a931
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d5e4376c9..a8a3ce109 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.522 2006/07/26 01:39:30 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.523 2006/07/26 13:43:31 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1513,6 +1513,7 @@ struct DbFixer { typedef struct { sqlite3 *db; /* The database being initialized */ char **pzErrMsg; /* Error message stored here */ + int rc; /* Result code stored here */ } InitData; /* |