tmp/tmpt7zvoxkm/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<semaphore>` synopsis <a id="semaphore.syn">[[semaphore.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
namespace std {
|
| 5 |
+
template<ptrdiff_t least_max_value = implementation-defined>
|
| 6 |
+
class counting_semaphore;
|
| 7 |
+
|
| 8 |
+
using binary_semaphore = counting_semaphore<1>;
|
| 9 |
+
}
|
| 10 |
+
```
|
| 11 |
+
|