1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Remove the obsolete static mutexes. Use only the lastest static mutex code. (CVS 4259)

FossilOrigin-Name: 6225cd461cdd2132eeb480aa4deb8986b7f63c15
This commit is contained in:
drh
2007-08-21 13:51:23 +00:00
parent 46abae817e
commit 51fc347a2e
6 changed files with 24 additions and 30 deletions

View File

@@ -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_
@@ -193,16 +193,6 @@ typedef INT16_TYPE i16; /* 2-byte signed integer */
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.