mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 14:06:33 +00:00
In the 10.12 SDK, x86_state_hdr from <mach/i386/thread_status.h> was defined as: struct x86_state_hdr { int flavor; int count; }; This has changed in the 10.13 SDK to: struct x86_state_hdr { uint32_t flavor; uint32_t count; }; This triggers signedness mismatch errors where these values are used with CHECK/DCHECK macros and gtest EXPECT/ASSERT macros. Compatibility with existing and new SDKs must be maintained, so more casts must be used. Bug: crashpad:185, crashpad:188 Change-Id: I8844d6a78520430a8b5b90a35403896c3c6cfa37 Reviewed-on: https://chromium-review.googlesource.com/533375 Reviewed-by: Robert Sesek <rsesek@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org>
…
Crashpad
Crashpad is a crash-reporting system.
Documentation
- Project status
- Developing Crashpad: instructions for getting the source code, building, testing, and contributing to the project.
- Crashpad interface documentation
- Crashpad tool man pages
- Crashpad overview design
Source Code
Crashpad’s source code is hosted in a Git repository at https://chromium.googlesource.com/crashpad/crashpad.
Other Links
- Bugs can be reported at the Crashpad issue tracker.
- The Crashpad Buildbot performs automated builds and tests.
- crashpad-dev is the Crashpad developers’ mailing list.
Description
Languages
C++
92.5%
Objective-C++
2.5%
C
2%
Python
1.8%
Assembly
0.9%
Other
0.3%