We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 534870b commit de9c965Copy full SHA for de9c965
src/libipc/platform/posix/condition.h
@@ -115,7 +115,7 @@ class condition {
115
return true;
116
}
117
118
- bool notify() noexcept {
+ bool notify(ipc::sync::mutex &) noexcept {
119
if (!valid()) return false;
120
int eno;
121
if ((eno = ::pthread_cond_signal(cond_)) != 0) {
@@ -125,7 +125,7 @@ class condition {
125
126
127
128
- bool broadcast() noexcept {
+ bool broadcast(ipc::sync::mutex &) noexcept {
129
130
131
if ((eno = ::pthread_cond_broadcast(cond_)) != 0) {
0 commit comments