From Jason Turner

[thread.timedmutex.recursive]

Diff to HTML by rtfpessoa

tmp/tmpau2pszed/{from.md → to.md} RENAMED
@@ -8,11 +8,11 @@ namespace std {
8
  ~recursive_timed_mutex();
9
 
10
  recursive_timed_mutex(const recursive_timed_mutex&) = delete;
11
  recursive_timed_mutex& operator=(const recursive_timed_mutex&) = delete;
12
 
13
- void lock();
14
  bool try_lock() noexcept;
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
  ~recursive_timed_mutex();
9
 
10
  recursive_timed_mutex(const recursive_timed_mutex&) = delete;
11
  recursive_timed_mutex& operator=(const recursive_timed_mutex&) = delete;
12
 
13
+ void lock(); // blocking
14
  bool try_lock() noexcept;
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);