summaryrefslogtreecommitdiff
path: root/src/genworld.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2016-10-30 17:29:33 +0000
committerfrosch <frosch@openttd.org>2016-10-30 17:29:33 +0000
commit31f046bd9bfec6be5b5a24f113f3b301376763e6 (patch)
treeaa00cd46578f397c91e8238fe9f5a8b462b52b38 /src/genworld.cpp
parentdd190397d6cf16a731dd05a7f722eb76ad21c01f (diff)
downloadopenttd-31f046bd9bfec6be5b5a24f113f3b301376763e6.tar.xz
(svn r27670) -Add: [FS#6471] Assign descriptive names to (GNU pthread) threads. (JGR)
Diffstat (limited to 'src/genworld.cpp')
-rw-r--r--src/genworld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/genworld.cpp b/src/genworld.cpp
index a08b32311..5cdb129b9 100644
--- a/src/genworld.cpp
+++ b/src/genworld.cpp
@@ -331,7 +331,7 @@ void GenerateWorld(GenWorldMode mode, uint size_x, uint size_y, bool reset_setti
_gw.thread = NULL;
}
- if (!VideoDriver::GetInstance()->HasGUI() || !ThreadObject::New(&_GenerateWorld, NULL, &_gw.thread)) {
+ if (!VideoDriver::GetInstance()->HasGUI() || !ThreadObject::New(&_GenerateWorld, NULL, &_gw.thread, "ottd:genworld")) {
DEBUG(misc, 1, "Cannot create genworld thread, reverting to single-threaded mode");
_gw.threaded = false;
_modal_progress_work_mutex->EndCritical();