summaryrefslogtreecommitdiff
path: root/src/thread
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2014-04-23 20:13:33 +0000
committerrubidium <rubidium@openttd.org>2014-04-23 20:13:33 +0000
commit0463dbdc9e5b39399765015c394e29dedaf7d041 (patch)
tree0d115f2027997f6c452d59d63919f9a6d05cb8be /src/thread
parent287ecd158249628a9b12aa5567e0e188499084f5 (diff)
downloadopenttd-0463dbdc9e5b39399765015c394e29dedaf7d041.tar.xz
(svn r26482) -Codechange: add an include that allows us to undefine/redefine "unsafe" functions to prevent them from being used, and thus having to care about certain aspects of their return values
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/thread_morphos.cpp2
-rw-r--r--src/thread/thread_none.cpp2
-rw-r--r--src/thread/thread_os2.cpp2
-rw-r--r--src/thread/thread_pthread.cpp2
-rw-r--r--src/thread/thread_win32.cpp2
5 files changed, 10 insertions, 0 deletions
diff --git a/src/thread/thread_morphos.cpp b/src/thread/thread_morphos.cpp
index abf2cf0cc..cc6b2f9d3 100644
--- a/src/thread/thread_morphos.cpp
+++ b/src/thread/thread_morphos.cpp
@@ -23,6 +23,8 @@
#include <proto/dos.h>
#include <proto/exec.h>
+#include "../safeguards.h"
+
/**
* avoid name clashes with MorphOS API functions
*/
diff --git a/src/thread/thread_none.cpp b/src/thread/thread_none.cpp
index 415a62d59..afa799b23 100644
--- a/src/thread/thread_none.cpp
+++ b/src/thread/thread_none.cpp
@@ -12,6 +12,8 @@
#include "../stdafx.h"
#include "thread.h"
+#include "../safeguards.h"
+
/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)
{
if (thread != NULL) *thread = NULL;
diff --git a/src/thread/thread_os2.cpp b/src/thread/thread_os2.cpp
index d93fc0c71..93f04cac1 100644
--- a/src/thread/thread_os2.cpp
+++ b/src/thread/thread_os2.cpp
@@ -16,6 +16,8 @@
#include <os2.h>
#include <process.h>
+#include "../safeguards.h"
+
/**
* OS/2 version for ThreadObject.
*/
diff --git a/src/thread/thread_pthread.cpp b/src/thread/thread_pthread.cpp
index 9d54a4d20..ce407fd94 100644
--- a/src/thread/thread_pthread.cpp
+++ b/src/thread/thread_pthread.cpp
@@ -14,6 +14,8 @@
#include <pthread.h>
#include <errno.h>
+#include "../safeguards.h"
+
/**
* POSIX pthread version for ThreadObject.
*/
diff --git a/src/thread/thread_win32.cpp b/src/thread/thread_win32.cpp
index 484cc5513..c37baf7c3 100644
--- a/src/thread/thread_win32.cpp
+++ b/src/thread/thread_win32.cpp
@@ -17,6 +17,8 @@
#include <windows.h>
#include <process.h>
+#include "../safeguards.h"
+
/**
* Win32 thread version for ThreadObject.
*/