码迷,mamicode.com
首页 >  
搜索关键字:process monitor    ( 12703个结果
Process类 进程管理器Demo
Process用于管理计算机的进程,下面给出一个C#进程管理器的DEMO。namespace ProcessManager{ public partial class Form1 : Form { public Form1() { Ini...
分类:其他好文   时间:2014-06-28 19:54:25    阅读次数:239
进程、应用程序域与上下文之间的关系
进程(Process)是Windows系统中的一个基本概念,它包含着一个运行程序所需要的资源。进程之间是相对独立的,一个进程无法直接访问另一个进程的数据(除非分布式),一个进程运行的失败也不会影响其他进程的运行,Windows系统就是利用进程把工作划分为多个独立的区域的。 进程可以理解为一个程序的....
分类:其他好文   时间:2014-06-21 13:31:50    阅读次数:172
PatentTips - Virtual translation lookaside buffer
BACKGROUND OF THE INVENTIONA conventional virtual-machine monitor (VM monitor) typically runs on a computer and presents to other software the abstrac...
分类:其他好文   时间:2014-06-21 06:29:43    阅读次数:181
PatentTips - Control register access virtualization performance improvement
BACKGROUND OF THE INVENTIONA conventional virtual-machine monitor (VMM) typically runs on a computer and presents to other software the abstraction of...
分类:数据库   时间:2014-06-21 00:36:46    阅读次数:377
PatentTips - Transparent unification of virtual machines
BACKGROUNDVirtualization technology enables a single host computer running a virtual machine monitor ("VMM") to present multiple abstractions and/or v...
分类:其他好文   时间:2014-06-21 00:34:11    阅读次数:363
PatentTips - Enhancing the usability of virtual machines
BACKGROUNDVirtualization technology enables a single host computer running a virtual machine monitor ("VMM") to present multiple abstractions and/or v...
分类:其他好文   时间:2014-06-21 00:09:42    阅读次数:451
vs2010(C#)打包winform安装程序
1、新建一个Windows窗体应用程序,例如项目名为monitor,功能略。新建的时候不要忘了创建解决方案。2、在monitor解决方案上“右击”—— “添加”——“新建项目”,选择“其他类型项目”——“安装和部署”——“安装项目”,并命名为“Setupmonitor”,确定后显示如下图所示3、添加...
分类:Windows程序   时间:2014-06-18 10:51:03    阅读次数:337
【Nginx】开发一个简单的HTTP模块
首先来分析一下HTTP模块是如何介入Nginx的。 当master进程fork出若干个workr子进程后,每个worker子进程都会在自己的for死循环中不断调用事件模块: for ( ;; ) { .... ngx_process_events_and_timers(cycle); /* 调用事件模块 */ .... }...
分类:其他好文   时间:2014-06-18 08:03:22    阅读次数:246
借助Process Explorer定位断电未保存的录音文件
话说某大神(大婶)开会常偷懒,用Windows自带的录音机进行录音并用记事本记录会议精要却没有点击Ctrl+S的习惯,结果就给我找了今天的难题。(之前都是Office的自动保存在哪里……)还是一样,先将结果摆在前面:录音文件缓存位置:C(系统盘符):\Users\AbsZero(用户名)\AppDa...
分类:其他好文   时间:2014-06-17 20:55:37    阅读次数:337
c++通过互斥量实现单例模式
在工程文件中, WinMain函数里加上以下代码 [cpp] view plaincopy HANDLE hMutex = CreateMutex(NULL, false, "Process");            if (GetLastError() == ERROR_ALREADY_EXISTS)            {         ...
分类:编程语言   时间:2014-06-17 19:03:37    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!