In Windows, our process information looks something like this. On the left list here we have our process. Within it we have code sections, global variables, process heap, process resources, open files and handles, our environment block, and thread info which include our thread local storage, and stack data. And within the call stack, we have various frames which will unwind with our process, with the bottom-most function frame being the beginning of the call stack. This usually starts with a prologue involving LdrpInitializeProcess
, BaseThreadInitThunk
, and RtlUserThreadStart
.
Inside a Process Block:
|
Inside a Call Stack:
|
No comments:
Post a Comment