1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Call Tcl_ExitThread() from within threads created using Tcl_CreateThread(). Not doing so causes notifier related errors on OSX.

FossilOrigin-Name: 684eae6623ef1d0336b7a734b17ed307c720b6f4
This commit is contained in:
dan
2010-07-05 12:54:08 +00:00
parent 6310990d54
commit 3374f8aee4
4 changed files with 10 additions and 8 deletions

View File

@@ -150,6 +150,7 @@ static Tcl_ThreadCreateType tclScriptThread(ClientData pSqlThread){
Tcl_DecrRefCount(pList);
Tcl_DecrRefCount(pRes);
Tcl_DeleteInterp(interp);
Tcl_ExitThread(0);
TCL_THREAD_CREATE_RETURN;
}