免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 882 | 回复: 0
打印 上一主题 下一主题

一段源代码,搞不定了,还是铁出来大家帮我看看吧~ [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-12-25 16:15 |只看该作者 |倒序浏览
我的exe文件怎么总是空啊?平台是win2K,GCC编译的
代码如下:
struct  map_value
{
  char     mapName[MAX_PATH];
  double   cpuUsage;
};

map<DWORD,map_value*>;    oldProcessTime;

typedef  map<DWORD,map_value*>;::value_type    valuetype;
map_value my_map;
struct map_value my_dismap;
map<DWORD,map_value*>;::iterator oldIt;

        
int ncount=0;
HANDLE snapshot;
PROCESSENTRY32 processinfo;
processinfo.dwSize = sizeof (processinfo) ;

snapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if(snapshot==NULL)
return;

  bool stat = Process32First (snapshot, &processinfo) ;
while (stat)
{               
  ncount=ncount+1;
         
  HANDLE hProcess = OpenProcess( PROCESS_QUERY_INFORMATION |PROCESS_VM_READ, FALSE, processinfo.th32ProcessID );
  if ( hProcess )
  {
  
   FILETIME CreationTime,ExitTime,KernelTime,UserTime;   
                        GetProcessTimes (hProcess,&CreationTime,&ExitTime,&KernelTime,&UserTime);
                        *(__int64*)(&LUserTime)=*(__int64*)(&UserTime);
                        *(__int64*)(&LKernelTime)=*(__int64*)(&KernelTime);
                        
                        my_map.cpuUsage=Li2Double(LUserTime)+Li2Double(LKernelTime);
                        strcpy(my_map.mapName,processinfo.szExeFile);
                           
                 oldIt=oldProcessTime.find(processinfo.th32ProcessID);                 
                 if( oldIt!=oldProcessTime.end() )  //判断如果有pid
                 {
。。。。。。。
                  }
                 else
                 {
                  //插入一个新值
                  oldProcessTime.insert(valuetype(processinfo.th32ProcessID,&my_map));
                 }
                              
         }
      
  stat = Process32Next (snapshot, &processinfo) ;  
}
for(oldIt=oldProcessTime.begin();oldIt!=oldProcessTime.end();oldIt++)
{
  printf("%-20d%-20f%-20s\n",(*oldIt).first,(*oldIt).second->;cpuUsage,(*oldIt).second->;cpuUsage);
}
结果如下:
8                   1301872.000000      (null)
160                 1301872.000000      (null)
204                 1301872.000000      (null)
232                 1301872.000000      (null)
244                 1301872.000000      (null)
324                 1301872.000000      (null)
428                 1301872.000000      (null)
464                 1301872.000000      (null)
492                 1301872.000000      (null)
596                 1301872.000000      (null)
608                 1301872.000000      (null)
656                 1301872.000000      (null)
688                 1301872.000000      (null)
744                 1301872.000000      (null)
800                 1301872.000000      (null)
832                 1301872.000000      (null)
868                 1301872.000000      (null)
880                 1301872.000000      (null)
928                 1301872.000000      (null)
956                 1301872.000000      (null)
976                 1301872.000000      (null)
1008                1301872.000000      (null)
1032                1301872.000000      (null)
1316                1301872.000000      (null)
1328                1301872.000000      (null)
1344                1301872.000000      (null)
1444                1301872.000000      (null)
1468                1301872.000000      (null)
1528                1301872.000000      (null)
1604                1301872.000000      (null)
1772                1301872.000000      (null)
1788                1301872.000000      (null)
1880                1301872.000000      (null)
1948                1301872.000000      (null)
2140                1301872.000000      (null)
2268                1301872.000000      (null)
2724                1301872.000000      (null)
3064                1301872.000000      (null)
3676                1301872.000000      (null)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP