| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
I'm not sure if this CL is necessary, but it was pointed out to me that I missed updating util/mach/symbolic_constants_mach.cc with the new exception types, which led to updating the tests, and then the exc_client.
I don't think we use any of this on the iOS side of things (unless iOS changes CrashHandler::CatchMachException to Forward exceptions to original_handlers_ -- there's still a TODO there)
WDYT?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
There’s also EXCEPTION_IDENTITY_PROTECTED.
Crashpad already handles things like EXCEPTION_IDENTITY. Should it handle EXCEPTION_IDENTITY_PROTECTED too?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
There’s also EXCEPTION_IDENTITY_PROTECTED.
Crashpad already handles things like EXCEPTION_IDENTITY. Should it handle EXCEPTION_IDENTITY_PROTECTED too?
Is that useful for Crashpad? EXCEPTION_IDENTITY_PROTECTED does not carry thread state.
```
routine mach_exception_raise_identity_protected(
exception_port : mach_port_t;
thread_id : uint64_t;
task_id_token_t : mach_port_t;
exception : exception_type_t;
code : mach_exception_data_t
);
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |