From b0d26a11ac6ffe0222206a5635c64704ed8770f2 Mon Sep 17 00:00:00 2001 From: Tal Peer Date: Sun, 20 Apr 2003 13:21:17 +0000 Subject: Remove rendundant function --- ext/sqlite/sqlite.c | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'ext/sqlite') diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 2c13a692b5..b8f1b61877 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -119,20 +119,6 @@ zend_module_entry sqlite_module_entry = { ZEND_GET_MODULE(sqlite) #endif -static void short_sleep(void) -{ -#if HAVE_NANOSLEEP - struct timespec req = { 0, 500 * 1000 }; - nanosleep(&req, NULL); -#elif HAVE_USLEEP - usleep(500 * 1000); -#elif PHP_WIN32 - Sleep(500); -#else - php_sleep(1); -#endif -} - static ZEND_RSRC_DTOR_FUNC(php_sqlite_db_dtor) { if (rsrc->ptr) { -- cgit v1.2.1