* src/threads/threadlist.c: Moved to .cpp.
[cacao.git] / src / vm / signal.c
index 5d83bcc51ba683f6299dbf8ebb0068a5d39bca0f..59132fbea4f7c2d9f67794a1003271e1cb72f8e3 100644 (file)
@@ -44,6 +44,7 @@
 #endif
 
 #include "threads/thread.hpp"
+#include "threads/threadlist.hpp"
 
 #include "vm/exceptions.hpp"
 #include "vm/globals.hpp"
@@ -316,7 +317,7 @@ void signal_thread_handler(int sig)
        case SIGQUIT:
                /* print a thread dump */
 #if defined(ENABLE_THREADS)
-               threads_dump();
+               ThreadList_dump_threads();
 #endif
 
 #if defined(ENABLE_STATISTICS)