diff options
author | drh <drh@noemail.net> | 2001-10-09 04:19:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2001-10-09 04:19:46 +0000 |
commit | ad75e9874b6f9b7f1f4c5a3973c983f3559b04e8 (patch) | |
tree | 2a9146386b1b65511644fdcb8540b006bec7343e /src/sqliteInt.h | |
parent | f57b339988d5caa23a2482c6c4f47a3c537efd58 (diff) | |
download | sqlite-ad75e9874b6f9b7f1f4c5a3973c983f3559b04e8.tar.gz sqlite-ad75e9874b6f9b7f1f4c5a3973c983f3559b04e8.zip |
Fix the locking protocol. (CVS 280)
FossilOrigin-Name: 484b82d8a1c84f3d9725a509de93276b9fa9b294
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 90c1869c8..7a65cdcd9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.58 2001/10/08 13:22:33 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.59 2001/10/09 04:19:47 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -149,11 +149,6 @@ struct sqlite { int (*xBusyCallback)(void *,const char*,int); /* The busy callback */ Hash tblHash; /* All tables indexed by name */ Hash idxHash; /* All (named) indices indexed by name */ - struct { /* State of the RC4 random number generator */ - int isInit; /* True if initialized */ - int i, j; /* State variables */ - int s[256]; /* State variables */ - } prng; int nextRowid; /* Next generated rowID */ }; @@ -466,8 +461,8 @@ void sqliteExprResolveInSelect(Parse*, Expr*); int sqliteExprAnalyzeAggregates(Parse*, Expr*); void sqliteParseInfoReset(Parse*); Vdbe *sqliteGetVdbe(Parse*); -int sqliteRandomByte(sqlite*); -int sqliteRandomInteger(sqlite*); +int sqliteRandomByte(); +int sqliteRandomInteger(); void sqliteBeginTransaction(Parse*); void sqliteCommitTransaction(Parse*); void sqliteRollbackTransaction(Parse*); |