diff options
| author | Adam <Adam@anope.org> | 2011-02-17 14:31:21 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2011-02-17 14:31:21 -0500 |
| commit | 536ea2189ae1ff8bf05583ed03fac86797616ac9 (patch) | |
| tree | 30b5056f53dea0d01be10f24360a443833e6565a /src/threadengines | |
| parent | 18bd33f9a477f7ce00d6f3c00acc0b0b68f5028d (diff) | |
Split db_mysql_live into two modules so other modules can make use of the asynchronous command interface
Diffstat (limited to 'src/threadengines')
| -rw-r--r-- | src/threadengines/threadengine_pthread.cpp | 7 | ||||
| -rw-r--r-- | src/threadengines/threadengine_win32.cpp | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/threadengines/threadengine_pthread.cpp b/src/threadengines/threadengine_pthread.cpp index acdccfeb5..e8242bb82 100644 --- a/src/threadengines/threadengine_pthread.cpp +++ b/src/threadengines/threadengine_pthread.cpp @@ -39,6 +39,13 @@ void Thread::Join() pthread_join(Handle, NULL); } +/** Exit the thread. Note that the thread still must be joined to free resources! + */ +void Thread::Exit() +{ + pthread_exit(0); +} + /** Start a new thread * @param thread A pointer to a newley allocated thread */ diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp index e6ad725bf..218f711c4 100644 --- a/src/threadengines/threadengine_win32.cpp +++ b/src/threadengines/threadengine_win32.cpp @@ -31,6 +31,13 @@ void Thread::Join() WaitForSingleObject(Handle, INFINITE); } +/** Exit the thread. Note that the thread still must be joined to free resources! + */ +void Thread::Exit() +{ + ExitThread(0); +} + /** Start a new thread * @param thread A pointer to a newley allocated thread */ |
