diff options
author | Pixel <pixel@nobis-crew.org> | 2011-10-18 09:35:45 -0700 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2011-10-18 09:35:45 -0700 |
commit | e0add8d5cb4fdb408efda292f64e029aa7ebbad2 (patch) | |
tree | f256b90f2cf03dba7f00ecac07500ad85064d8d4 /tests | |
parent | 56837535aeb1c7ae0fa2730d77dd718c334cf729 (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.cc | 1 |
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() { |