diff options
author | drh <drh@noemail.net> | 2007-08-21 13:51:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-08-21 13:51:23 +0000 |
commit | 51fc347a2ef312dad4bff734d9c6e316d4e6a9f6 (patch) | |
tree | 30306e344f8c6368a7dc2435f3621705313c96aa /src/sqliteInt.h | |
parent | 46abae817e4ae160048a8604e096aa1ca5c7a060 (diff) | |
download | sqlite-51fc347a2ef312dad4bff734d9c6e316d4e6a9f6.tar.gz sqlite-51fc347a2ef312dad4bff734d9c6e316d4e6a9f6.zip |
Remove the obsolete static mutexes. Use only the lastest static mutex code. (CVS 4259)
FossilOrigin-Name: 6225cd461cdd2132eeb480aa4deb8986b7f63c15
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 63bb6a3d9..d388afffd 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.593 2007/08/20 22:48:43 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.594 2007/08/21 13:51:23 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -194,16 +194,6 @@ typedef UINT8_TYPE u8; /* 1-byte unsigned integer */ typedef UINT8_TYPE i8; /* 1-byte signed integer */ /* -** The mutex subsystem provides a handfull of static mutexes -** that are identified by small positive integers. The following -** macros give symbolic names to those integers. -*/ -#define SQLITE_MUTEX_MEM 1 /* Used by the memory allocator */ -#define SQLITE_MUTEX_PRNG 2 /* Used by pseudorandom generator */ -#define SQLITE_MUTEX_GLOBAL 3 /* Used by global variables */ -#define SQLITE_MUTEX_STATIC_MAX 3 - -/* ** Macros to determine whether the machine is big or little endian, ** evaluated at runtime. */ |