From Jason Turner

[thread.timedmutex.class]

Diff to HTML by rtfpessoa

tmp/tmps1cojlv5/{from.md → to.md} RENAMED
@@ -8,11 +8,11 @@ namespace std {
8
  ~timed_mutex();
9
 
10
  timed_mutex(const timed_mutex&) = delete;
11
  timed_mutex& operator=(const timed_mutex&) = delete;
12
 
13
- void lock();
14
  bool try_lock();
15
  template <class Rep, class Period>
16
  bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
17
  template <class Clock, class Duration>
18
  bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
 
8
  ~timed_mutex();
9
 
10
  timed_mutex(const timed_mutex&) = delete;
11
  timed_mutex& operator=(const timed_mutex&) = delete;
12
 
13
+ void lock(); // blocking
14
  bool try_lock();
15
  template <class Rep, class Period>
16
  bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
17
  template <class Clock, class Duration>
18
  bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);