diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-12-08 16:04:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-12-08 20:42:39 +0100 |
commit | 69a9b48d50d98130a65aa6c823dc6cc464fefd71 (patch) | |
tree | defcf2cef8eb60721a4bf389ca051bff4e163a12 /include/vcl/task.hxx | |
parent | ce8a8e809dedc61d8355560914f78987ee11f1e2 (diff) |
Replace SchedulerMutex with (non-recursive) std::mutex
...following up on the TODO from 84af20ef3ea72190784e9e7be820684c2558ba8c "Make
SchedulerMutex non-recursive"
Change-Id: I3be98f2dba7c7486b79ec1f166431333cc69451a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107423
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/vcl/task.hxx')
-rw-r--r-- | include/vcl/task.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/task.hxx b/include/vcl/task.hxx index 35efe4825bbc..d8adae7eff0b 100644 --- a/include/vcl/task.hxx +++ b/include/vcl/task.hxx @@ -91,7 +91,7 @@ public: /** * This function must be called for static tasks, so the Task destructor - * ignores the SchedulerMutex, as it may not be available anymore. + * ignores the scheduler mutex, as it may not be available anymore. * The cleanup is still correct, as it has already happened in * DeInitScheduler call well before the static destructor calls. */ |