diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-07-18 16:45:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-07-18 16:45:40 +0100 |
commit | 6a9f6c28a382e14ae9da0b3ceeee46a6c51b1292 (patch) | |
tree | cf0a8f75575b913257f3f6bbba0fefbc2634bfcf /vcl | |
parent | 8a16a5f74243433be4997dfac0f17daa12d9836c (diff) |
try sleep instead of blocks annotation
Change-Id: I2d80ed40b5ec4c8db62053d8bb6c9d0c9ad24da2
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/uitest/uno/uiobject_uno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/uitest/uno/uiobject_uno.cxx b/vcl/source/uitest/uno/uiobject_uno.cxx index d6f8afb5caea..b68b15aeb5df 100644 --- a/vcl/source/uitest/uno/uiobject_uno.cxx +++ b/vcl/source/uitest/uno/uiobject_uno.cxx @@ -100,7 +100,7 @@ IMPL_LINK_NOARG(ExecuteWrapper, ExecuteActionHdl, Timer*, void) std::unique_lock<std::mutex> lock(mMutex); while (!mbSignal) { - // coverity[blocks] - intentional sleep while mutex held + // coverity[sleep] - intentional sleep while mutex held std::this_thread::sleep_for(std::chrono::milliseconds(5)); } } |