Zhiyu Wang

Results 10 comments of Zhiyu Wang

That sounds good, we will have a try next week in our in-house app.

> In C99, it is defined as "an unsigned integer type with the property that any valid pointer to void can be converted to this type, then converted back to...

First, you can write a custom installation class Inherited from `KSCrashInstallation` and override `- (id)sink` method return a custom Sink which conform to `KSCrashReportFilter` protocol. Then, install the custom installation...

Here's an example ``` void test1() { char *a = (char *)0x1; *a = 1; } void test() { test1(); } ``` When we call _test()_ from _-[ViewController oneClickCrash:]_, the...

If you want to know the features and architecture of KSCrash, I suggest that you can start from [here](https://github.com/kstenerud/KSCrash#recommended-reading)

Please attach a full crash report for more detail.

> Thank you @ZhiyuWong, sorry for the delayed reply. Will share the details in an email to your account [[email protected]](mailto:[email protected]). Sorry, I haven't received your email. I'm afraid it had...

- Just as the `KSLOGBASIC_WARN()` log above: if the process is running in a debugger, it will be detected by `ksdebug_isBeingTraced()` function. Then, the unsafe monitors such as `KSCrashMonitorTypeMachException` and...

Please attach a full crash report for more detail.

I think it should be `CPU_SUBTYPE_ARM64_V8`, then I found a sample code here: ``` case CPU_TYPE_ARM64: if (bootarg_no64exec) return 0; switch (hostsubtype) { case CPU_SUBTYPE_ARM64_V8: switch (execsubtype) { case CPU_SUBTYPE_ARM64_V8:...