summaryrefslogtreecommitdiff
path: root/src/fiber_thread.cpp
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2008-06-08 12:06:27 +0000
committertruebrain <truebrain@openttd.org>2008-06-08 12:06:27 +0000
commitb95042b05cf7a8117309edc158df252f6f4adacb (patch)
tree824116881f6d5514cdaa069f10eddac84da3b04a /src/fiber_thread.cpp
parent96d7f87cc99ee04791b9fa097a027a17bb82226b (diff)
downloadopenttd-b95042b05cf7a8117309edc158df252f6f4adacb.tar.xz
(svn r13412) -Add: OTTDThreadTerminateFunc, for all thread systems, which is called when a thread is terminated. Now GenWorld- and SaveLoad-thread cleanup theirselves correctly, while Fibers don't (as that causes access-violations)
Diffstat (limited to 'src/fiber_thread.cpp')
-rw-r--r--src/fiber_thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fiber_thread.cpp b/src/fiber_thread.cpp
index 5155b5519..fb4e8debf 100644
--- a/src/fiber_thread.cpp
+++ b/src/fiber_thread.cpp
@@ -32,7 +32,7 @@ public:
{
this->m_sem = ThreadSemaphore::New();
/* Create a thread and start stFiberProc */
- this->m_thread = ThreadObject::New(&stFiberProc, this);
+ this->m_thread = ThreadObject::New(&stFiberProc, this, NULL);
}
/**