diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-24 12:53:10 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-24 12:53:10 +0200 |
commit | 7bb96595ee11acda44bdeda400e356d4044e072e (patch) | |
tree | 91a317793811a02ad49d124b93f169f848aa2b94 /include/threadengines/threadengine_pthread.h | |
parent | f8d18d82c707f4ac2de04e96fe55cdfd39374bbc (diff) |
Move and rename ThreadData::FreeThread() to ThreadEngine::Stop() and document what it does
Diffstat (limited to 'include/threadengines/threadengine_pthread.h')
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index 5756926fd..9304536f1 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -43,13 +43,24 @@ class CoreExport ThreadEngine * derived object. */ void Start(Thread* thread_to_init); + + /** Stop a thread gracefully. + * First, this function asks the thread to terminate by calling Thread::SetExitFlag(). + * Next, it waits until the thread terminates (on the operating system level). Finally, + * all OS-level resources associated with the thread are released. The Thread instance + * passed to the function is NOT freed. + * When this function returns, the thread is stopped and you can destroy it or restart it + * at a later point. + * Stopping a thread that is not running is a bug. + * @param thread The thread to stop. + */ + void Stop(Thread* thread); }; class CoreExport ThreadData { public: pthread_t pthread_id; - void FreeThread(Thread* toFree); }; /** The Mutex class represents a mutex, which can be used to keep threads |