(svn r17339) -Codechange: move thread related files to their own directory (like done for video, music, sound, etc)

This commit is contained in:
rubidium
2009-09-01 10:07:22 +00:00
parent 5a3b2f0d02
commit 07d2af338e
18 changed files with 63 additions and 53 deletions

View File

@@ -14,7 +14,7 @@
#include "landscape.h"
#include "company_func.h"
#include "variables.h"
#include "thread.h"
#include "thread/thread.h"
#include "command_func.h"
#include "genworld.h"
#include "gfxinit.h"

View File

@@ -32,7 +32,7 @@
#include "landscape_type.h"
#include "querystring_gui.h"
#include "town.h"
#include "thread.h"
#include "thread/thread.h"
#include "settings_func.h"
#include "table/strings.h"

View File

@@ -26,7 +26,7 @@
#include "landscape_type.h"
#include "network/network_func.h"
#include "core/smallvec_type.hpp"
#include "thread.h"
#include "thread/thread.h"
#include "window_func.h"
#include "table/palettes.h"

View File

@@ -16,7 +16,7 @@
#include "../../stdafx.h"
#include "../../debug.h"
#include "../../core/smallvec_type.hpp"
#include "../../thread.h"
#include "../../thread/thread.h"
#include "tcp.h"

View File

@@ -17,7 +17,7 @@
#include "../stdafx.h"
#include "../debug.h"
#include "../core/alloc_func.hpp"
#include "../thread.h"
#include "../thread/thread.h"
#include "../string_func.h"
#include "network_internal.h"
#include "network_udp.h"

View File

@@ -28,7 +28,7 @@
#include "../string_func.h"
#include "../company_base.h"
#include "../settings_type.h"
#include "../thread.h"
#include "../thread/thread.h"
#include "../rev.h"
#include "core/udp.h"

View File

@@ -60,7 +60,7 @@
#include "elrail_func.h"
#include "rev.h"
#include "highscore.h"
#include "thread.h"
#include "thread/thread.h"
#include "station_base.h"
#include "newgrf_commons.h"

View File

@@ -24,7 +24,7 @@
#include "../openttd.h"
#include "../debug.h"
#include "../station_base.h"
#include "../thread.h"
#include "../thread/thread.h"
#include "../town.h"
#include "../network/network.h"
#include "../variables.h"

View File

@@ -9,10 +9,10 @@
/** @file thread_morphos.cpp MorphOS implementation of Threads. */
#include "stdafx.h"
#include "../stdafx.h"
#include "thread.h"
#include "debug.h"
#include "core/alloc_func.hpp"
#include "../debug.h"
#include "../core/alloc_func.hpp"
#include <stdlib.h>
#include <unistd.h>

View File

@@ -9,7 +9,7 @@
/** @file thread_none.cpp No-Threads-Available implementation of Threads */
#include "stdafx.h"
#include "../stdafx.h"
#include "thread.h"
/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)

View File

@@ -9,7 +9,7 @@
/** @file thread_os2.cpp OS/2 implementation of Threads. */
#include "stdafx.h"
#include "../stdafx.h"
#include "thread.h"
#define INCL_DOS

View File

@@ -9,7 +9,7 @@
/** @file thread_pthread.cpp POSIX pthread implementation of Threads. */
#include "stdafx.h"
#include "../stdafx.h"
#include "thread.h"
#include <pthread.h>

View File

@@ -9,10 +9,10 @@
/** @file thread_win32.cpp Win32 thread implementation of Threads. */
#include "stdafx.h"
#include "../stdafx.h"
#include "thread.h"
#include "debug.h"
#include "core/alloc_func.hpp"
#include "../debug.h"
#include "../core/alloc_func.hpp"
#include <stdlib.h>
#include <windows.h>
#include <process.h>