summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-18 09:35:45 -0700
committerPixel <pixel@nobis-crew.org>2011-10-18 09:35:45 -0700
commite0add8d5cb4fdb408efda292f64e029aa7ebbad2 (patch)
treef256b90f2cf03dba7f00ecac07500ad85064d8d4 /tests
parent56837535aeb1c7ae0fa2730d77dd718c334cf729 (diff)
Fixing Darwin compilation:
-) Using clang instead of gcc for the native target (*sigh*) -) Fixing libeio (*sigh*) -) "Fixing" the connect() call in Sockets because Darwin is stupid (*SIIIIIIIGH*) Although the Threads unit test isn't working properly.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-Threads.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test-Threads.cc b/tests/test-Threads.cc
index daebf5f..82bc9ec 100644
--- a/tests/test-Threads.cc
+++ b/tests/test-Threads.cc
@@ -12,6 +12,7 @@ class TestThread : public Thread {
void * TestThread::proc() {
Printer::log(M_STATUS, "Into a thread");
+ return NULL;
}
void MainTask::Do() {