Files
2025-10-25 03:02:53 +03:00

583 B

[semaphore.syn]

32 Concurrency support library [thread]

32.8 Semaphore [thread.sema]

32.8.2 Header synopsis [semaphore.syn]

🔗

namespace std {// [thread.sema.cnt], class template counting_semaphoretemplate<ptrdiff_t least_max_value = implementation-defined>class counting_semaphore; using binary_semaphore = counting_semaphore<1>;}