This commit is contained in:
Felix Raimundo
2017-05-07 16:22:13 +02:00
parent 5573c4709c
commit c0d475ad7b

View File

@@ -585,7 +585,7 @@ pub fn park() {
/// Blocks unless or until the current thread's token is made available or /// Blocks unless or until the current thread's token is made available or
/// the specified duration has been reached (may wake spuriously). /// the specified duration has been reached (may wake spuriously).
/// ///
/// The semantics of this function are equivalent to [`park()`][[park] except /// The semantics of this function are equivalent to [`park()`][park] except
/// that the thread will be blocked for roughly no longer than `dur`. This /// that the thread will be blocked for roughly no longer than `dur`. This
/// method should not be used for precise timing due to anomalies such as /// method should not be used for precise timing due to anomalies such as
/// preemption or platform differences that may not cause the maximum /// preemption or platform differences that may not cause the maximum
@@ -605,7 +605,7 @@ pub fn park_timeout_ms(ms: u32) {
/// Blocks unless or until the current thread's token is made available or /// Blocks unless or until the current thread's token is made available or
/// the specified duration has been reached (may wake spuriously). /// the specified duration has been reached (may wake spuriously).
/// ///
/// The semantics of this function are equivalent to [`park()`][[park] except /// The semantics of this function are equivalent to [`park()`][park] except
/// that the thread will be blocked for roughly no longer than `dur`. This /// that the thread will be blocked for roughly no longer than `dur`. This
/// method should not be used for precise timing due to anomalies such as /// method should not be used for precise timing due to anomalies such as
/// preemption or platform differences that may not cause the maximum /// preemption or platform differences that may not cause the maximum