From Jason Turner

[exec.run.loop.ctor]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp34cytvhh/{from.md → to.md} +17 -0
tmp/tmp34cytvhh/{from.md → to.md} RENAMED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Constructor and destructor <a id="exec.run.loop.ctor">[[exec.run.loop.ctor]]</a>
2
+
3
+ ``` cpp
4
+ run_loop() noexcept;
5
+ ```
6
+
7
+ *Ensures:* The `run_loop` instance’s count is 0 and its state is
8
+ starting.
9
+
10
+ ``` cpp
11
+ ~run_loop();
12
+ ```
13
+
14
+ *Effects:* If the `run_loop` instance’s count is not 0 or if its state
15
+ is running, invokes `terminate` [[except.terminate]]. Otherwise, has no
16
+ effects.
17
+