Kevin Gosse

Results 37 comments of Kevin Gosse

Sorry I didn't see the issue, I need to activate notifications on this repository. You can be notified when a method is executed using SetEnterLeaveFunctionHooks3WithInfo: https://learn.microsoft.com/en-us/dotnet/framework/unmanaged-api/profiling/icorprofilerinfo3-setenterleavefunctionhooks3withinfo-method However, you need to...

I've never seen this error, I don't really know where it's coming from. Do you have the same thing if you start a new project and try to publish it...

That would indicate that your tests run with a different bitness than `DynaMD.TestChildProcess`. Could you try changing the solution configuration from `Any CPU` to `x64` and see if the issue...

Currently the library supports marshalling of self-contained types (primitives types, structs containing only primitives types, and arrays of such structs. In a nutshell, everything that does not contain a reference)....

Well, I've met two kind of problems so far: - In some cases, the ClrType isn't resolved properly by ClrMD. I need it to know the layout of the object...

Ok, got you. I think I've managed to bypass all the bugs left by following your advice (gotta do more tests to be sure). Instead of directly using the type...

Oh indeed I don't think he noticed. Thanks, I pinged him.

In the current implementation there are two ways to add tags (on crashinfo and on metadata). I _think_ they mean a different thing: I would say the ones on metadata...

Also, the tags in crashinfo can be easily searched on in the UI: ![image](https://github.com/user-attachments/assets/8cf53ba9-104c-4427-a89f-861ece59997e) Whereas the ones in metadata can't: ![image](https://github.com/user-attachments/assets/03850cbe-7aab-4b40-883b-f560591b0be3) We probably should change the format of the tags...

As we start to look into symbolication, I realize that adding all the module information at each stackframe is really inefficient and makes the crash report much bigger than it...