Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wrapper/lld-c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ LldInvokeResult mun_lld_link(LldFlavor flavor, int argc, const char *const *argv
}

// LLD is not thread-safe at all, so we guard parallel invocation with a mutex
std::unique_lock lock(concurrencyMutex);
std::unique_lock<std::mutex> lock(concurrencyMutex);
result.success = link(args, outputStream, errorStream, false, false);

// Delete the global context and clear the global context pointer, so that it
Expand Down