diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-26 10:18:46 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-26 10:18:46 +0100 |
| commit | 01c10f3f5eefb0473cce3a0cdd381b6db39cf1bb (patch) | |
| tree | f757fe31f86744b3d1abeb23e05e2a9a2bf8623d /src/checker.hpp | |
| parent | 42b9039a1fd0307f8b46cd1c750e11db653acea1 (diff) | |
Use `RecursiveMutex` to fix a race condition with parapoly records
Diffstat (limited to 'src/checker.hpp')
| -rw-r--r-- | src/checker.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.hpp b/src/checker.hpp index d22b99e89..9693c3e38 100644 --- a/src/checker.hpp +++ b/src/checker.hpp @@ -417,7 +417,7 @@ struct GenProcsData { struct GenTypesData { Array<Entity *> types; - RwMutex mutex; + RecursiveMutex mutex; }; struct Defineable { |