MCPcopy Create free account
hub / github.com/apache/arrow / Lock

Method Lock

cpp/src/arrow/util/mutex.cc:54–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54Mutex::Guard Mutex::Lock() {
55 DCHECK_NE(impl_, nullptr);
56 impl_->mutex_.lock();
57 return Guard{this};
58}
59
60Mutex::Mutex() : impl_(new Impl, [](Impl* impl) { delete impl; }) {}
61

Callers 15

metadataMethod · 0.45
FilterRowGroupsMethod · 0.45
TestRowGroupsMethod · 0.45
ReadPhysicalSchemaMethod · 0.45
ClearCachedMetadataMethod · 0.45
operator()Method · 0.45
ConsumeMethod · 0.45
InsertMethod · 0.45
GetOrInsertMethod · 0.45
EraseMethod · 0.45

Calls

no outgoing calls

Tested by 2

TestRowGroupsMethod · 0.36