Decided not to make the thread functions report errors to the testingT object; I'm still not a big fan of the thread model here, but I'd like to actually split the thread functions out of the testing library entirely, since they are only used for the tests in initmain.c.

This commit is contained in:
Pietro Gagliardi 2019-04-30 13:15:36 -04:00
parent 25d4021269
commit 7d29c4346d
1 changed files with 0 additions and 1 deletions

View File

@ -438,7 +438,6 @@ static unsigned __stdcall threadThreadProc(void *data)
return 0;
}
// TODO instead of panicking, should these functions report errors to a testingT?
testingThread *testingNewThread(void (*f)(void *data), void *data)
{
testingThread *t;