Removing two monitor consecutive events
Removing two monitor consecutive events
This commit is contained in:
@ -454,7 +454,7 @@ size_t nrounds = 0;
|
|||||||
* round.
|
* round.
|
||||||
*/
|
*/
|
||||||
if (nrounds != 0 &&
|
if (nrounds != 0 &&
|
||||||
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >
|
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >=
|
||||||
MON_BASE_INTERVAL_MS)
|
MON_BASE_INTERVAL_MS)
|
||||||
{
|
{
|
||||||
nrounds += 1;
|
nrounds += 1;
|
||||||
|
@ -618,7 +618,7 @@ size_t nrounds = 0;
|
|||||||
* round.
|
* round.
|
||||||
*/
|
*/
|
||||||
if (nrounds != 0 &&
|
if (nrounds != 0 &&
|
||||||
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >
|
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >=
|
||||||
MON_BASE_INTERVAL_MS)
|
MON_BASE_INTERVAL_MS)
|
||||||
{
|
{
|
||||||
nrounds += 1;
|
nrounds += 1;
|
||||||
|
@ -452,7 +452,7 @@ size_t nrounds = 0;
|
|||||||
* round.
|
* round.
|
||||||
*/
|
*/
|
||||||
if (nrounds != 0 &&
|
if (nrounds != 0 &&
|
||||||
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >
|
((nrounds*MON_BASE_INTERVAL_MS)%handle->interval) >=
|
||||||
MON_BASE_INTERVAL_MS)
|
MON_BASE_INTERVAL_MS)
|
||||||
{
|
{
|
||||||
nrounds += 1;
|
nrounds += 1;
|
||||||
|
Reference in New Issue
Block a user