(svn r17339) -Codechange: move thread related files to their own directory (like done for video, music, sound, etc)
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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)
|
||||
@@ -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
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user