Skip to content

Commit

Permalink
Updating from microseconds to milliseconds the pdp stateful writer ev…
Browse files Browse the repository at this point in the history
…ents. (#995)
  • Loading branch information
MiguelBarro authored Feb 5, 2020
1 parent 279b2f2 commit 66a5356
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/cpp/rtps/builtin/discovery/participant/PDP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ namespace rtps {

// Default configuration values for PDP reliable entities.

const Duration_t pdp_heartbeat_period{ 0, 350 * 1000 }; // 350 milliseconds
const Duration_t pdp_nack_response_delay{ 0, 100 * 1000 }; // 100 milliseconds
const Duration_t pdp_nack_supression_duration{ 0, 11 * 1000 }; // ~11 milliseconds
const Duration_t pdp_heartbeat_response_delay{ 0, 11 * 1000 }; // ~11 milliseconds
const Duration_t pdp_heartbeat_period{ 0, 350 * 1000000 }; // 350 milliseconds
const Duration_t pdp_nack_response_delay{ 0, 100 * 1000000 }; // 100 milliseconds
const Duration_t pdp_nack_supression_duration{ 0, 11 * 1000000 }; // 11 milliseconds
const Duration_t pdp_heartbeat_response_delay{ 0, 11 * 1000000 }; // 11 milliseconds

const int32_t pdp_initial_reserved_caches = 20;

Expand Down

0 comments on commit 66a5356

Please sign in to comment.