main
Brett 2023-11-08 00:52:38 -05:00
parent 89e83766de
commit a78665f5ef
1 changed files with 3 additions and 2 deletions

View File

@ -272,13 +272,14 @@ class transceiver
*/
void virtual_kernel_subsystem_init()
{
std::thread transmit([&] {
std::thread transmit([&, this] {
while (running)
{
}
});
std::thread receive([&] {
std::thread receive([&, this] {
while (running)
{