首页 > 代码库 > 获取 Windows Mobile 手机上进程列表和CPU占用率
获取 Windows Mobile 手机上进程列表和CPU占用率
[1].[图片] ProcessorUsage.png 跳至 [1] [2] [3] [4] [5]
[2].[文件] ProcessorUsage.zip ~ 16KB 下载(66)跳至 [1] [2] [3] [4] [5]
文件不存在或者代码语言不存在
[3].[文件] ProcessorUsage.ARMV4I.zip ~ 225KB 下载(68)跳至 [1] [2] [3] [4] [5]
文件不存在或者代码语言不存在
[4].[代码] [C/C++/Objective-C]代码跳至 [1] [2] [3] [4] [5]
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /// Convert a FILETIME to ticks (ms) DWORD GetThreadTick( const FILETIME& time ) { __int64 tick = MAKEDWORDLONG( time .dwLowDateTime, time .dwHighDateTime ); return static_cast < DWORD >( tick /= 10000 ); }
FILETIME creation = { 0 }, exit = { 0 }, kernel = { 0 }, user = { 0 }; ::GetThreadTimes( ( HANDLE )thread_id, &creation, & exit , &kernel, &user )
// time in ms spent in kernel space DWORD kernel_tics = GetThreadTick( kernel );
// time in ms spent in user space DWORD user_tics = GetThreadTick( user ); |
[5].[代码] [C/C++/Objective-C]代码跳至 [1] [2] [3] [4] [5]
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | HANDLE snapshot = ::CreateToolhelp32Snapshot( TH32CS_SNAPTHREAD, 0 ); if ( INVALID_HANDLE_VALUE != snapshot ) { THREADENTRY32 te = { 0 }; te.dwSize = sizeof ( THREADENTRY32 );
if ( ::Thread32First( snapshot, &te ) ) { do { // The te.th32ThreadID member will give us the thread ID of // every thread running in the system. // te.th32OwnerProcessID tells us which process owns that // thread. } while ( ::Thread32Next( snapshot, &te ) ); }
::CloseToolhelp32Snapshot( snapshot ); } |
获取 Windows Mobile 手机上进程列表和CPU占用率
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。