aboutsummaryrefslogtreecommitdiff
path: root/src/test_osinst.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-06-12 12:40:13 +0000
committerdrh <drh@noemail.net>2008-06-12 12:40:13 +0000
commitbe4076e08438ce81690a40cef6b888ffe7fed243 (patch)
treecb4e86b175cafa8424bace9da691d16703af0314 /src/test_osinst.c
parent9a8f176e8d314db820d7dacf47571e9253baae4c (diff)
downloadsqlite-be4076e08438ce81690a40cef6b888ffe7fed243.tar.gz
sqlite-be4076e08438ce81690a40cef6b888ffe7fed243.zip
Remove obsolete code from the test_osinst.c module. (CVS 5211)
FossilOrigin-Name: 699cec66cdae6818844612d69eb89aa8b93c3f1a
Diffstat (limited to 'src/test_osinst.c')
-rw-r--r--src/test_osinst.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test_osinst.c b/src/test_osinst.c
index 6d2efe971..753273bd4 100644
--- a/src/test_osinst.c
+++ b/src/test_osinst.c
@@ -14,7 +14,7 @@
** adds instrumentation to all vfs and file methods. C and Tcl interfaces
** are provided to control the instrumentation.
**
-** $Id: test_osinst.c,v 1.15 2008/06/11 11:00:31 danielk1977 Exp $
+** $Id: test_osinst.c,v 1.16 2008/06/12 12:40:14 drh Exp $
*/
/*
@@ -106,7 +106,6 @@
#define OS_FILECONTROL 7
#define OS_FILESIZE 8
#define OS_FULLPATHNAME 9
-#define OS_GETTEMPNAME 10
#define OS_LOCK 11
#define OS_OPEN 12
#define OS_RANDOMNESS 13
@@ -583,7 +582,6 @@ const char *sqlite3_instvfs_name(int eEvent){
case OS_OPEN: zEvent = "xOpen"; break;
case OS_DELETE: zEvent = "xDelete"; break;
case OS_ACCESS: zEvent = "xAccess"; break;
- case OS_GETTEMPNAME: zEvent = "xGetTempName"; break;
case OS_FULLPATHNAME: zEvent = "xFullPathname"; break;
case OS_RANDOMNESS: zEvent = "xRandomness"; break;
case OS_SLEEP: zEvent = "xSleep"; break;