mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-01-04 21:55:16 +01:00
Use stdint types everywhere
R=mark at https://breakpad.appspot.com/535002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1121 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
c02002a581
commit
aeffe1056f
117 changed files with 1385 additions and 1379 deletions
|
|
@ -193,9 +193,9 @@ Context::Context(const Dump &dump, const MDRawContextARM &context)
|
|||
}
|
||||
|
||||
Thread::Thread(const Dump &dump,
|
||||
u_int32_t thread_id, const Memory &stack, const Context &context,
|
||||
u_int32_t suspend_count, u_int32_t priority_class,
|
||||
u_int32_t priority, u_int64_t teb) : Section(dump) {
|
||||
uint32_t thread_id, const Memory &stack, const Context &context,
|
||||
uint32_t suspend_count, uint32_t priority_class,
|
||||
uint32_t priority, uint64_t teb) : Section(dump) {
|
||||
D32(thread_id);
|
||||
D32(suspend_count);
|
||||
D32(priority_class);
|
||||
|
|
@ -207,11 +207,11 @@ Thread::Thread(const Dump &dump,
|
|||
}
|
||||
|
||||
Module::Module(const Dump &dump,
|
||||
u_int64_t base_of_image,
|
||||
u_int32_t size_of_image,
|
||||
uint64_t base_of_image,
|
||||
uint32_t size_of_image,
|
||||
const String &name,
|
||||
u_int32_t time_date_stamp,
|
||||
u_int32_t checksum,
|
||||
uint32_t time_date_stamp,
|
||||
uint32_t checksum,
|
||||
const MDVSFixedFileInfo &version_info,
|
||||
const Section *cv_record,
|
||||
const Section *misc_record) : Section(dump) {
|
||||
|
|
@ -257,10 +257,10 @@ const MDVSFixedFileInfo Module::stock_version_info = {
|
|||
|
||||
Exception::Exception(const Dump &dump,
|
||||
const Context &context,
|
||||
u_int32_t thread_id,
|
||||
u_int32_t exception_code,
|
||||
u_int32_t exception_flags,
|
||||
u_int64_t exception_address)
|
||||
uint32_t thread_id,
|
||||
uint32_t exception_code,
|
||||
uint32_t exception_flags,
|
||||
uint64_t exception_address)
|
||||
: Stream(dump, MD_EXCEPTION_STREAM) {
|
||||
D32(thread_id);
|
||||
D32(0); // __align
|
||||
|
|
@ -276,10 +276,10 @@ Exception::Exception(const Dump &dump,
|
|||
assert(Size() == sizeof(MDRawExceptionStream));
|
||||
}
|
||||
|
||||
Dump::Dump(u_int64_t flags,
|
||||
Dump::Dump(uint64_t flags,
|
||||
Endianness endianness,
|
||||
u_int32_t version,
|
||||
u_int32_t date_time_stamp)
|
||||
uint32_t version,
|
||||
uint32_t date_time_stamp)
|
||||
: test_assembler::Section(endianness),
|
||||
file_start_(0),
|
||||
stream_directory_(*this),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue