diff options
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. */ |