Remove the obsolete static mutexes. Use only the lastest static mutex code. (CVS 4259)
FossilOrigin-Name: 6225cd461cdd2132eeb480aa4deb8986b7f63c15
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 63bb6a3..d388aff 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 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.
*/