Returns true if the mutex cannot be immediately taken.
| 690 | |
| 691 | // Returns true if the mutex cannot be immediately taken. |
| 692 | bool isBusy() { return !mutex.available(); } |
| 693 | |
| 694 | // Wait for all operations started before now to be ready, which is done by |
| 695 | // obtaining and releasing the mutex. |
no test coverage detected