资源简介
查看指定进程的cpu和内存使用情况(与任务管理器查看一样)
代码片段和文件信息
// Just_Test.cpp : Defines the entry point for the console application.
//
#include “stdafx.h“
#include
#include
#include
#include “Monitor.h“
using namespace std;
int _tmain(int argc _TCHAR* argv[])
{
string strProcess = ““;
cout<<“进程名称(带.exe):“;
cin>>strProcess;
CMonitor usg(strProcess);
while(1)
{
double dMemory= 1.0*(usg.GetMemoryUsage())/1024;
cout<<“当前使用的内存:“<
float cpu = usg.GetCPUusage();
cout<<“当前使用的cpu: “< Sleep(1000);
}
system(“pause“);
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 622 2017-04-06 17:42 Just_Test\Just_Test.cpp
文件 5876 2017-04-06 17:43 Just_Test\Just_Test.vcxproj
文件 1519 2017-04-06 16:53 Just_Test\Just_Test.vcxproj.filters
文件 143 2016-07-15 15:41 Just_Test\Just_Test.vcxproj.user
文件 4821 2017-04-06 17:37 Just_Test\Monitor.cpp
文件 1193 2017-04-06 17:41 Just_Test\Monitor.h
文件 92 2017-04-06 17:46 Just_Test\ReadMe.txt
文件 296 2016-07-15 15:41 Just_Test\stdafx.cpp
文件 405 2017-04-06 17:46 Just_Test\stdafx.h
文件 314 2016-07-15 15:41 Just_Test\targetver.h
目录 0 2017-04-06 17:46 Just_Test
----------- --------- ---------- ----- ----
15281 11
相关资源
- 驱动级进程保护 隐藏 注入
- ProcessScheduling.zip
- 操作系统实验四 进程的管道通信 实验
- 解决getRunningAppProcesses只得到本应用的
- 使用动态优先权和时间片轮转的进程
- 银行家算法的思想,编写程序,解决
- 操作系统进程调度模拟
- Qt使用WM_COPYDATA消息进行进程通信 de
- STM32多任务多进程简单系统原理
- 注入进程类加速器E源码
- powertool.exe
- 可查看进程路径的xp任务管理器
- minix内核修改,增加实时进程和实时调
- 进程间通信设计。用msgget(),msgs
- 修改版实现进程的软中断通信。要求
- 实现进程调度算法---动态优先级
- 进程外com组件实现win764位软件调用3
- 操作系统实验——进程的同步与互斥
- 多进程cpu调度仿真
- 进程的管道通信 实验报告
- 进程调度模拟设计—时间片轮转、非
- 时间片轮转、最高响应比优先调度算
- 进程调度模拟设计——先来先服务、
- CFS调度算法 详细解析
- 进程管理模拟系统
- wpe防屏蔽版修改了进程名称的
- 多级反馈进程调度算法 实验报告 及程
- 操作系统——司机和售票员进程同步
- 进程隐藏工具HideApp
- 进程同步读者写者问题
评论
共有 条评论