summaryrefslogtreecommitdiff
path: root/src/thread_none.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/thread_none.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/thread_none.cpp')
-rw-r--r--src/thread_none.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread_none.cpp b/src/thread_none.cpp
index 6209e89a7..76f113584 100644
--- a/src/thread_none.cpp
+++ b/src/thread_none.cpp
@@ -6,7 +6,7 @@
#include "thread.h"
#include "fiber.hpp"
-/* static */ ThreadObject *ThreadObject::New(OTTDThreadFunc proc, void *param)
+/* static */ ThreadObject *ThreadObject::New(OTTDThreadFunc proc, void *param, OTTDThreadTerminateFunc terminate_func)
{
return NULL;
}