Bugfixes part 3 #209

Open
andrey wants to merge 36 commits from bugfixes3 into master
Showing only changes of commit b180d91b1e - Show all commits
+3 -1
View File
@@ -28,6 +28,8 @@
#include "picrc.h" #include "picrc.h"
#include "pidiagnostics.h" #include "pidiagnostics.h"
#include <atomic>
//! \~\ingroup IO-Utils //! \~\ingroup IO-Utils
//! \~\brief //! \~\brief
@@ -301,7 +303,7 @@ protected:
bool send_process(); bool send_process();
uint packet_header_size, part_header_size; uint packet_header_size, part_header_size;
bool break_, is_sending, is_receiving, is_pause; std::atomic<bool> break_{true}, is_sending{false}, is_receiving{false}, is_pause{false};
PIString state_string; PIString state_string;
llong bytes_all, bytes_cur; llong bytes_all, bytes_cur;