sexy parker bingo night

main
Brett 2023-11-07 16:09:08 -05:00
parent a76a4f3410
commit 89e83766de
1 changed files with 8 additions and 6 deletions

View File

@ -272,14 +272,16 @@ class transceiver
*/ */
void virtual_kernel_subsystem_init() void virtual_kernel_subsystem_init()
{ {
std::thread kernel([this] { std::thread transmit([&] {
while (running)
{
}
});
std::thread receive([&] {
while (running) while (running)
{ {
bool ack = false;
while (!ack)
{
}
} }
}); });
} }