aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2018-03-26 16:37:53 +0000
committerdrh <drh@noemail.net>2018-03-26 16:37:53 +0000
commit80262896d6d2103cd25499b4a3c61eb82c2df290 (patch)
treef862686183b4e1ebba6289d375765614311b793f /src/sqliteInt.h
parent43ff906d3e27e97e906f33ddb179fad46f683698 (diff)
downloadsqlite-80262896d6d2103cd25499b4a3c61eb82c2df290.tar.gz
sqlite-80262896d6d2103cd25499b4a3c61eb82c2df290.zip
Refactor some internal object element names used by the busy handler, to
simplify analysis. FossilOrigin-Name: 6c40c5574f4ae9795a142d01a8f84afd1b72678ea5f6bfca14a8646c4e862605
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 216a50025..b10fe9432 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -961,9 +961,9 @@ typedef INT16_TYPE LogEst;
*/
typedef struct BusyHandler BusyHandler;
struct BusyHandler {
- int (*xFunc)(void *,int); /* The busy callback */
- void *pArg; /* First arg to busy callback */
- int nBusy; /* Incremented with each busy call */
+ int (*xBusyHandler)(void *,int); /* The busy callback */
+ void *pBusyArg; /* First arg to busy callback */
+ int nBusy; /* Incremented with each busy call */
};
/*