Searched refs:threadset (Results 1 – 1 of 1) sorted by relevance
60 static Thread threadset[N_THREAD]; variable136 if( threadset[i].busy ){ in tcl_thread_create()140 threadset[i].busy = 1; in tcl_thread_create()141 sqliteFree(threadset[i].zFilename); in tcl_thread_create()142 threadset[i].zFilename = sqliteStrDup(argv[2]); in tcl_thread_create()143 threadset[i].opnum = 1; in tcl_thread_create()144 threadset[i].completed = 0; in tcl_thread_create()145 rc = pthread_create(&x, 0, thread_main, &threadset[i]); in tcl_thread_create()148 sqliteFree(threadset[i].zFilename); in tcl_thread_create()149 threadset[i].busy = 0; in tcl_thread_create()[all …]