Struct
GumMemoryAccessDetails
Description [src]
struct GumMemoryAccessDetails {
GumThreadId thread_id;
GumMemoryOperation operation;
gpointer from;
gpointer address;
guint range_index;
guint page_index;
guint pages_completed;
guint pages_total;
GumCpuContext* context;
}
Describes a single access to monitored memory, as delivered to a
GumMemoryAccessNotify.
Structure members
thread_id:GumThreadIdID of the thread that performed the access.
operation:GumMemoryOperationThe kind of access — read, write or execute.
from:gpointerAddress of the instruction that made the access.
address:gpointerThe memory address that was accessed.
range_index:guintIndex of the monitored range the address falls in.
page_index:guintIndex of the page within that range.
pages_completed:guintNumber of monitored pages accessed so far.
pages_total:guintTotal number of monitored pages.
context:GumCpuContextCPU context at the point of the access.