Changes needed to get build passing

This commit is contained in:
Tyler Wilding
2020-09-04 23:24:16 -04:00
parent f38ed57ed5
commit 6187b31f2c
6 changed files with 66 additions and 10 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ void SystemThreadManager::join() {
*/
void* bootstrap_thread_func(void* x) {
SystemThread* thd = (SystemThread*)x;
SystemThreadInterface interface(thd);
thd->function(interface);
SystemThreadInterface iface(thd);
thd->function(iface);
printf("[SYSTEM] Thread %s is returning\n", thd->name.c_str());
return nullptr;
}