Fix formatting

This commit is contained in:
Carles Fernandez 2021-11-22 19:38:56 +01:00
parent ede805f9c3
commit b0fd24476d
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
3 changed files with 7 additions and 7 deletions

View File

@ -78,7 +78,7 @@ endif()
if(CMAKE_ANDROID_ARCH_ABI)
target_compile_definitions(pvt_libs PUBLIC -DANDROID=1)
endif(CMAKE_ANDROID_ARCH_ABI)
endif()
target_link_libraries(pvt_libs
PUBLIC

View File

@ -64,7 +64,7 @@ endif()
if(CMAKE_ANDROID_ARCH_ABI)
target_compile_definitions(core_receiver PUBLIC -DANDROID=1)
endif(CMAKE_ANDROID_ARCH_ABI)
endif()
if(ENABLE_FPGA)
target_compile_definitions(core_receiver PUBLIC -DENABLE_FPGA=1)

View File

@ -421,7 +421,7 @@ int ControlThread::run()
#ifndef ANDROID
pthread_cancel(id);
#else
//todo: find alternative
// todo: find alternative
#endif
}
@ -430,12 +430,12 @@ int ControlThread::run()
{
pthread_t id2 = cmd_interface_thread_.native_handle();
cmd_interface_thread_.detach();
#ifndef ANDROID
#ifndef ANDROID
pthread_cancel(id2);
#else
//todo: find alternative
#endif
}
// todo: find alternative
#endif
}
LOG(INFO) << "Flowgraph stopped";