diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-01-26 13:23:03 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-01-26 16:36:13 -0700 |
| commit | 1eaf180dd04efcf65ef981b1e1064658b5ec09c3 (patch) | |
| tree | c12e99871e9ba098bea523da0bde266d9afbd065 /lib/libcxx/src/thread.cpp | |
| parent | 85be0b8c6589f58d5667d0a8a8f94524d5de5ba6 (diff) | |
| download | zig-1eaf180dd04efcf65ef981b1e1064658b5ec09c3.tar.gz zig-1eaf180dd04efcf65ef981b1e1064658b5ec09c3.zip | |
update libcxx to llvm 16
Diffstat (limited to 'lib/libcxx/src/thread.cpp')
| -rw-r--r-- | lib/libcxx/src/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcxx/src/thread.cpp b/lib/libcxx/src/thread.cpp index ce2822dbac..ec4f65f982 100644 --- a/lib/libcxx/src/thread.cpp +++ b/lib/libcxx/src/thread.cpp @@ -164,8 +164,8 @@ __thread_struct_imp::~__thread_struct_imp() for (_Notify::iterator i = notify_.begin(), e = notify_.end(); i != e; ++i) { - i->second->unlock(); i->first->notify_all(); + i->second->unlock(); } for (_AsyncStates::iterator i = async_states_.begin(), e = async_states_.end(); i != e; ++i) |
