diff options
| author | Dan Engelbrecht <[email protected]> | 2025-05-16 19:51:36 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-05-16 19:51:36 +0200 |
| commit | 4e2efa1051e3eb86ab48d92b3f6ad5896cda5d81 (patch) | |
| tree | 1fbab083b3fe8919a36caa2d925c933f696a5791 /src/zenutil/zenutil.cpp | |
| parent | validate custom fields (#399) (diff) | |
| download | zen-4e2efa1051e3eb86ab48d92b3f6ad5896cda5d81.tar.xz zen-4e2efa1051e3eb86ab48d92b3f6ad5896cda5d81.zip | |
parallel work handle dispatch exception (#400)
- Bugfix: Wait for async threads if dispatching of work using ParallellWork throws exception
Diffstat (limited to 'src/zenutil/zenutil.cpp')
| -rw-r--r-- | src/zenutil/zenutil.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zenutil/zenutil.cpp b/src/zenutil/zenutil.cpp index aff9156f4..fe23b00c1 100644 --- a/src/zenutil/zenutil.cpp +++ b/src/zenutil/zenutil.cpp @@ -8,6 +8,7 @@ # include <zenutil/cache/rpcrecording.h> # include <zenutil/chunkedfile.h> # include <zenutil/commandlineoptions.h> +# include <zenutil/parallelwork.h> namespace zen { @@ -19,6 +20,7 @@ zenutil_forcelinktests() cacherequests_forcelink(); chunkedfile_forcelink(); commandlineoptions_forcelink(); + parallellwork_forcelink(); } } // namespace zen |