Fixups from review by dgarske

This commit is contained in:
Anthony Hu
2022-06-14 11:13:28 -04:00
parent 4d4ee3b2db
commit 22eee3206d
3 changed files with 5 additions and 5 deletions

View File

@@ -973,7 +973,7 @@ static void client_thread(const void* args)
#endif
}
info->client.ret = ret;
info->server.done = 1;
info->client.done = 1;
osThreadSuspend(info->client.threadId);
if (info->doShutdown)
@@ -1248,7 +1248,7 @@ static void server_thread(const void* args)
#endif
}
info->server.ret = ret;
info->client.done = 1;
info->server.done = 1;
osThreadSuspend(info->server.threadId);
if (info->doShutdown)