My process crashed and I have a kernel dump. I see that the process crashed when running code like this:
class father { public: void virtual runVirtualFunc() = 0; void func() { runVirtualFunc();
I have a full call stack in a kernel dump, but I donβt know who the heir that runs "func" is. Is there a way to figure this out (perhaps with some tricks of computing a pointer to this ?)
I do not have a real-time connected process, only the main dump.
source share