xref: /llvm-project/clang-tools-extra/docs/clang-tidy/checks/bugprone/spuriously-wake-up-functions.rst (revision 31747668aaaa325227013e4cdd2c7aa185110485)
1.. title:: clang-tidy - bugprone-spuriously-wake-up-functions
2
3bugprone-spuriously-wake-up-functions
4=====================================
5
6Finds ``cnd_wait``, ``cnd_timedwait``, ``wait``, ``wait_for``, or
7``wait_until`` function calls when the function is not invoked from a loop
8that checks whether a condition predicate holds or the function has a
9condition 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
24This 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>`_.
27and 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>`_.
30