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 de9c965 commit 15b572bCopy full SHA for 15b572b
src/libipc/platform/posix/condition.h
@@ -63,7 +63,7 @@ class condition {
63
ipc::error("fail pthread_condattr_init[%d]\n", eno);
64
return false;
65
}
66
- IPC_UNUSED_ auto guard_cond_attr = guard([&cond_attr] { ::pthread_condattr_destroy(&cond_attr); };
+ IPC_UNUSED_ auto guard_cond_attr = guard([&cond_attr] { ::pthread_condattr_destroy(&cond_attr); });
67
if ((eno = ::pthread_condattr_setpshared(&cond_attr, PTHREAD_PROCESS_SHARED)) != 0) {
68
ipc::error("fail pthread_condattr_setpshared[%d]\n", eno);
69
0 commit comments