git-svn-id: svn://db.shs.com.ru/pip@200 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2016-05-17 09:44:15 +00:00
parent c09c7f486a
commit bce1892582

View File

@@ -170,14 +170,17 @@ void PIDiagnostics::propertyChanged(const PIString &) {
void PIDiagnostics::changeDisconnectTimeout(float disct) {
lock();
// if (disct != disconn_) {
disconn_ = piMaxf(disct, interval() / 1000.f);
disconn_ = piMaxf(disct, interval() / 1000.f);
if (interval() > 0) {
int hist_size = piMaxi(int(disconn_ * 1000. / interval()), 1);
//piCoutObj << hist_size << interval();
history_rec.resize(hist_size);
history_send.resize(hist_size);
// }
// piCoutObj << hist_size << disconn_ << interval();
} else {
history_rec.resize(1);
history_send.resize(1);
}
//piCoutObj << hist_size << disconn_ << interval();
unlock();
}