diff options
author | rubidium <rubidium@openttd.org> | 2009-09-01 10:07:22 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-01 10:07:22 +0000 |
commit | 07d2af338e237889ff453a3a774522b9b0021439 (patch) | |
tree | 373ccc2eecf1aa917f24008e4d25535413dc4eb2 /src | |
parent | 5a3b2f0d02ddb7fedbca29a3e5e68dec28c887af (diff) | |
download | openttd-07d2af338e237889ff453a3a774522b9b0021439.tar.xz |
(svn r17339) -Codechange: move thread related files to their own directory (like done for video, music, sound, etc)
Diffstat (limited to 'src')
-rw-r--r-- | src/genworld.cpp | 2 | ||||
-rw-r--r-- | src/genworld_gui.cpp | 2 | ||||
-rw-r--r-- | src/gfx.cpp | 2 | ||||
-rw-r--r-- | src/network/core/tcp_connect.cpp | 2 | ||||
-rw-r--r-- | src/network/network_gamelist.cpp | 2 | ||||
-rw-r--r-- | src/network/network_udp.cpp | 2 | ||||
-rw-r--r-- | src/openttd.cpp | 2 | ||||
-rw-r--r-- | src/saveload/saveload.cpp | 2 | ||||
-rw-r--r-- | src/thread/thread.h (renamed from src/thread.h) | 0 | ||||
-rw-r--r-- | src/thread/thread_morphos.cpp (renamed from src/thread_morphos.cpp) | 6 | ||||
-rw-r--r-- | src/thread/thread_none.cpp (renamed from src/thread_none.cpp) | 2 | ||||
-rw-r--r-- | src/thread/thread_os2.cpp (renamed from src/thread_os2.cpp) | 2 | ||||
-rw-r--r-- | src/thread/thread_pthread.cpp (renamed from src/thread_pthread.cpp) | 2 | ||||
-rw-r--r-- | src/thread/thread_win32.cpp (renamed from src/thread_win32.cpp) | 6 |
14 files changed, 17 insertions, 17 deletions
diff --git a/src/genworld.cpp b/src/genworld.cpp index b7ca107fb..1018cac29 100644 --- a/src/genworld.cpp +++ b/src/genworld.cpp @@ -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" diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index 6e386cf86..76447ca70 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -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" diff --git a/src/gfx.cpp b/src/gfx.cpp index 0662c18c5..8d0add677 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -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" diff --git a/src/network/core/tcp_connect.cpp b/src/network/core/tcp_connect.cpp index bfc642c4b..5d5d2feba 100644 --- a/src/network/core/tcp_connect.cpp +++ b/src/network/core/tcp_connect.cpp @@ -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" diff --git a/src/network/network_gamelist.cpp b/src/network/network_gamelist.cpp index a3f724487..b751fba34 100644 --- a/src/network/network_gamelist.cpp +++ b/src/network/network_gamelist.cpp @@ -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" diff --git a/src/network/network_udp.cpp b/src/network/network_udp.cpp index de11b6cb7..7785f635b 100644 --- a/src/network/network_udp.cpp +++ b/src/network/network_udp.cpp @@ -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" diff --git a/src/openttd.cpp b/src/openttd.cpp index a99a735ec..a46a7a734 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -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" diff --git a/src/saveload/saveload.cpp b/src/saveload/saveload.cpp index 71e8b803f..65a1d2e8e 100644 --- a/src/saveload/saveload.cpp +++ b/src/saveload/saveload.cpp @@ -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" diff --git a/src/thread.h b/src/thread/thread.h index 22873bee5..22873bee5 100644 --- a/src/thread.h +++ b/src/thread/thread.h diff --git a/src/thread_morphos.cpp b/src/thread/thread_morphos.cpp index 5248a7837..abf2cf0cc 100644 --- a/src/thread_morphos.cpp +++ b/src/thread/thread_morphos.cpp @@ -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> diff --git a/src/thread_none.cpp b/src/thread/thread_none.cpp index 1893aebd2..861f2cfd6 100644 --- a/src/thread_none.cpp +++ b/src/thread/thread_none.cpp @@ -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) diff --git a/src/thread_os2.cpp b/src/thread/thread_os2.cpp index 18122fe15..1145e8e41 100644 --- a/src/thread_os2.cpp +++ b/src/thread/thread_os2.cpp @@ -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 diff --git a/src/thread_pthread.cpp b/src/thread/thread_pthread.cpp index 9edfd4e14..483b71c0f 100644 --- a/src/thread_pthread.cpp +++ b/src/thread/thread_pthread.cpp @@ -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> diff --git a/src/thread_win32.cpp b/src/thread/thread_win32.cpp index 8b1d11544..e752de1ae 100644 --- a/src/thread_win32.cpp +++ b/src/thread/thread_win32.cpp @@ -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> |