On 4/4/18, Deon Brewis <[email protected]> wrote: > assert( sqlite3_mutex_held(pPage->pBt->mutex) );
This verifies that the current thread holds the pPage->pBt->mutex mutex. The assert() will fire an abort() if the mutex is not held. -- D. Richard Hipp [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

