mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-10 06:36:02 +00:00
mac: build fix after http://crrev.com/1364803004
R=mark@chromium.org BUG=crashpad:46 Review URL: https://codereview.chromium.org/1382963002 .
This commit is contained in:
parent
ecf3b37863
commit
d8769ed212
@ -111,5 +111,9 @@ uint64_t ThreadSnapshotMac::ThreadSpecificDataAddress() const {
|
|||||||
return thread_specific_data_address_;
|
return thread_specific_data_address_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<const MemorySnapshot*> ThreadSnapshotMac::ExtraMemory() const {
|
||||||
|
return std::vector<const MemorySnapshot*>();
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace internal
|
} // namespace internal
|
||||||
} // namespace crashpad
|
} // namespace crashpad
|
||||||
|
@ -59,6 +59,7 @@ class ThreadSnapshotMac final : public ThreadSnapshot {
|
|||||||
int SuspendCount() const override;
|
int SuspendCount() const override;
|
||||||
int Priority() const override;
|
int Priority() const override;
|
||||||
uint64_t ThreadSpecificDataAddress() const override;
|
uint64_t ThreadSpecificDataAddress() const override;
|
||||||
|
std::vector<const MemorySnapshot*> ExtraMemory() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
#if defined(ARCH_CPU_X86_FAMILY)
|
#if defined(ARCH_CPU_X86_FAMILY)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user