add changed files

This commit is contained in:
smogm
2015-01-11 18:12:55 +01:00
parent 626c785081
commit c37263f594
9 changed files with 21 additions and 18 deletions

View File

@@ -18,5 +18,7 @@ libcommon_la_SOURCES = \
endif
libcommon_la_SOURCES += \
thread_abstraction.cpp \
mutex_abstraction.cpp \
lt_debug.cpp \
proc_tools.c

View File

@@ -30,4 +30,5 @@ void Thread::joinThread()
void* Thread::runThread(void* ptr)
{
((Thread*)ptr)->run();
return 0;
}