发布时间:2015-06-21 11:52:01
欢迎转载,转载请注明出处:http://forever.blog.chinaunix.net一、编写linux下应用程序的时候,有时候会用到高精度相对时间的概念,比如间隔100ms。那么应该使用哪个时间函数更准确呢? 1、time 该函数返回的是自1970年以来的秒数,显然精度不够,不能使.........【阅读全文】
发布时间:2015-06-21 11:51:46
do_vmx_vcpu_run函数实现了VM entry和VM exit的处理 /* * We put this into a separate noinline function to prevent the compiler * from duplicating the code. This is needed because this code * uses non local labels that cannot be duplicated. * Do not put any flow co.........【阅读全文】
发布时间:2015-06-21 11:51:40
引:本文多处使用以下术语,声明如下:GVA,Guest Virtual Address客户机进程的线性地址GPA,Guest Physical Address客户机的物理地址HVA,Host Virtual Address宿主机进程的线性地址HPA,Host Physical Address宿主机的物理地址在KVM机制下,客户系统运行在CPU的非根模式,透明的完成地址翻译,即对客户机.........【阅读全文】