资源描述:
《windows任务管理器中cpu使用记录波形制作.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Visualc++6.0程序设计从入门到精通167页到171页中有windows任务管理器中cpu使用记录波形制作的教程,回家后可以好好学学。一、程序运行界面如下:二、程序思想与要点:1)、本程序分两种情况来获取CPU的利用率,NT下利用ntdll.dll中没有公开的API:NtQuerySystemInformation, 9x下利用注册表来获取CPU的利用率code:NTtypedefLONG(WINAPI*PROCNTQSI)(UINT,PVOID,ULONG,PULONG);PROCNTQSINt
2、QuerySystemInformation;NtQuerySystemInformation=(PROCNTQSI)GetProcAddress(GetModuleHandle("ntdll"),"NtQuerySystemInformation");if(!NtQuerySystemInformation){return;}//getnumberofprocessorsinthesystemstatus=NtQuerySystemInformation(SystemBasicInformation,&
3、SysBaseInfo,sizeof(SysBaseInfo),NULL);if(status!=NO_ERROR){return;}status=NtQuerySystemInformation(SystemTimeInformation,&SysTimeInfo,sizeof(SysTimeInfo),0);if(status!=NO_ERROR){return;}//getnewCPU''sidletimestatus=NtQuerySystemInformation(SystemPerforman
4、ceInformation,&SysPerfInfo,sizeof(SysPerfInfo),NULL);if(status!=NO_ERROR){return;}//ifit''safirstcall-skipitif(m_liOldIdleTime.QuadPart!=0){//CurrentValue=NewValue-OldValuedbIdleTime=Li2Double(SysPerfInfo.liIdleTime)-Li2Double(m_liOldIdleTime);dbSystemTim
5、e=Li2Double(SysTimeInfo.liKeSystemTime)-Li2Double(m_liOldSystemTime);//CurrentCpuIdle=IdleTime/SystemTimedbIdleTime=dbIdleTime/dbSystemTime;//CurrentCpuUsage%=100-(CurrentCpuIdle*100)/NumberOfProcessorsdbIdleTime=100.0-dbIdleTime*100.0/(double)SysBaseInfo
6、.bKeNumberProcessors+0.5;m_fNewUsges=(UINT)dbIdleTime;}9x略2)、通过GlobalMemoryStatus来获取内存的使用情况code:MEMORYSTATUSMemStat;MemStat.dwLength=sizeof(MEMORYSTATUS);GlobalMemoryStatus(&MemStat);m_ulNewUsges=MemStat.dwMemoryLoad;3)、程序中封装了两个类CcpuUsgesCtl和CmemUsgesCtl,
7、使用这两这个类可以实现CPU,内存利用率的定时读取,并以图形化的形式显示出来三、使用有两种使用方法,不过要先把这个类的文件addtoproject1).声明一个这两类的对象,并用create来动态生成suchas:CMemUsgesCtlm_MyMemCtrl;CCpuUsgesCtlm_MyCpuCtrl;…………if(!m_MyCpuCtrl.Create(WS_CHILD
8、WS_VISIBLE,rect,this,IDC_CPUCTL)){TRACE0("Createm_MyCtrlFailed!"
9、);return0;}rect.left=rect.right+20;rect.right+=lpCreateStruct->cx/2;if(!m_MyMemCtrl.Create(WS_CHILD
10、WS_VISIBLE,rect,this,IDC_MEMCTL)){TRACE0("Createm_MyCtrlFailed!");return0;}2)插入一个static控件,并从类向导中为其生成control形变量,最后将变