Auri

Results 17 comments of Auri

A workaround would be to use [`memflow-kvm`](https://github.com/memflow/memflow-kvm), which does not guess memory mappings.

This is not a blocker for immediate 0.2 stabilization, tasks can be moved to 0.3 cycle.

I don't think I fully understand what you mean. If you have multiple KVM VMs running, you can submit a `pid` as argument to the connector, like so: ``` -c...

First point: please file general issues in https://github.com/memflow/memflow. I am transferring this issue there.

Now, as for your question, you can do the following: ```cpp int i = 0; os.process_info_list_callback([&i, filter](ProcessInfo info) { if (!strstr(info.name, filter)) { return true; } char sys_arch[11]; char proc_arch[11];...

It appears that the VM does not have access to neither Vulkan, nor OpenGL ES. There are several options about this: providing a Vulkan/gles capable GPU inside the VM, or...