Home
last modified time | relevance | path

Searched refs:xTask (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c33800 void *(*xTask)(void*); /* The thread routine */ member
33807 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
33814 assert( xTask!=0 ); in sqlite3ThreadCreate()
33822 p->xTask = xTask; in sqlite3ThreadCreate()
33831 rc = pthread_create(&p->tid, 0, xTask, pIn); in sqlite3ThreadCreate()
33835 p->pOut = xTask(pIn); in sqlite3ThreadCreate()
33871 void *(*xTask)(void*); /* The routine to run as a thread */ member
33892 assert( p->xTask!=0 ); in sqlite3ThreadProc()
33893 p->pResult = p->xTask(p->pIn); in sqlite3ThreadProc()
33902 void *(*xTask)(void*), /* Routine to run in a separate thread */ in sqlite3ThreadCreate()
[all …]