add grabshot, move snapshot, asset update mtime, plugins.txt for ffmpeg 3.4.1
[goodguy/history.git] / cinelerra-5.1 / guicast / thread.C
index 26ccf9a45918ce78b7147c4dc7bb6829b136da18..b27f43a25856198a5e82909b4d788cb677970dad 100644 (file)
@@ -65,8 +65,8 @@ void* Thread::entrypoint(void *parameters)
        thread->run();
        thread->finished = true;
        if( !thread->synchronous ) {
-               if( !thread->cancelled ) TheList::dbg_del(thread->tid);
                if( thread->autodelete ) delete thread;
+               else if( !thread->cancelled ) TheList::dbg_del(thread->tid);
                else thread->tid = ((pthread_t)-1);
        }
        return NULL;
@@ -106,9 +106,13 @@ void Thread::start()
                        perror("Thread::start pthread_attr_setinheritsched");
        }
 
+// autodelete may delete this immediately after create
+       int autodelete = this->autodelete;
+
        pthread_create(&tid, &attr, Thread::entrypoint, this);
 
-       TheList::dbg_add(tid, owner, typeid(*this).name());
+       if( !autodelete )
+               TheList::dbg_add(tid, owner, typeid(*this).name());
 }
 
 int Thread::cancel()