17b81e13f579c002c0df0adb9523d26076fb98e5
[platform/upstream/llvm.git] / clang-tools-extra / docs / clang-tidy / checks / bugprone-spuriously-wake-up-functions.rst
1 .. title:: clang-tidy - bugprone-spuriously-wake-up-functions
2
3 bugprone-spuriously-wake-up-functions
4 =====================================
5
6 Finds ``cnd_wait``, ``cnd_timedwait``, ``wait``, ``wait_for``, or 
7 ``wait_until`` function calls when the function is not invoked from a loop
8 that checks whether a condition predicate holds or the function has a 
9 condition parameter.
10
11 .. code-block: c++
12
13     if (condition_predicate) {
14         condition.wait(lk);
15     }
16
17 .. code-block: c
18
19     if (condition_predicate) {
20         if (thrd_success != cnd_wait(&condition, &lock)) {
21         }
22     }
23
24 This check corresponds to the CERT C++ Coding Standard rule
25 `CON54-CPP. Wrap functions that can spuriously wake up in a loop
26 <https://wiki.sei.cmu.edu/confluence/display/cplusplus/CON54-CPP.+Wrap+functions+that+can+spuriously+wake+up+in+a+loop>`_.
27 and CERT C Coding Standard rule
28 `CON36-C. Wrap functions that can spuriously wake up in a loop
29 <https://wiki.sei.cmu.edu/confluence/display/c/CON36-C.+Wrap+functions+that+can+spuriously+wake+up+in+a+loop>`_.