We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dfc66b9 + 4b1e816 commit c4105afCopy full SHA for c4105af
2 files changed
libvmi/libvmi.py
@@ -955,6 +955,9 @@ def pidcache_flush(self):
955
def pidcache_add(self, pid, dtb):
956
lib.vmi_pidcache_add(self.vmi, pid, dtb)
957
958
+ def pagecache_flush(self):
959
+ lib.vmi_pagecache_flush(self.vmi)
960
+
961
# events
962
def register_event(self, event):
963
event.vmi = self
libvmi/libvmi_cdef.h
@@ -981,3 +981,6 @@ void vmi_pidcache_add(
981
vmi_instance_t vmi,
982
vmi_pid_t pid,
983
addr_t dtb);
984
985
+void vmi_pagecache_flush(
986
+ vmi_instance_t vmi);
0 commit comments