Overview
| Comment: | Fixed typo in debug message | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 936a791a4afacfd92f1046c268bdab5c | 
| User & Date: | rkeene on 2016-07-10 19:05:42 | 
| Other Links: | manifest | tags | 
Context
| 2016-07-10 | ||
| 19:26 | Added support for allowing the user to completely control how downloads are performed as well as configure the default method check-in: 3864351ad4 user: rkeene tags: trunk | |
| 19:05 | Fixed typo in debug message check-in: 936a791a4a user: rkeene tags: trunk | |
| 19:05 | Updated to finalize a thread that terminated even if there are no current Tcl interpreters associated with it check-in: b03c6db3d1 user: rkeene tags: trunk | |
Changes
Modified appfsd.c from [9b20b616c9] to [f0663dcc45].
| ︙ | ︙ | |||
| 421 422 423 424 425 426 427 | 
	thread_interp_reset_key = global_interp_reset_key;
	if (interp == NULL) {
		interp = appfs_create_TclInterp(NULL);
		if (interp == NULL) {
 | | | 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | 
	thread_interp_reset_key = global_interp_reset_key;
	if (interp == NULL) {
		interp = appfs_create_TclInterp(NULL);
		if (interp == NULL) {
			APPFS_DEBUG("Create interp failed, returning in failure.");
			return(NULL);
		}
		pthread_ret = pthread_setspecific(interpKey, interp);
		if (pthread_ret != 0) {
			APPFS_DEBUG("pthread_setspecific() failed.  Terminating Tcl interpreter.");
 | 
| ︙ | ︙ |