3
A
回答
8
下面的C函數返回的CPU時間和過程PID的常駐內存。要獲得其他進程的資源,您需要root權限。您也可以嘗試getrusage(),但我從來沒有正確使用內存。通過getrusage()獲取CPU時間對我來說總是有效。
該函數根據ps和top命令的源代碼進行調整。它是我程序的一部分,用於監視其他進程的內存。
#ifdef __APPLE__
#include <sys/types.h>
#include <sys/sysctl.h>
#include <sys/vmmeter.h>
#include <mach/mach_init.h>
#include <mach/mach_host.h>
#include <mach/mach_port.h>
#include <mach/mach_traps.h>
#include <mach/task_info.h>
#include <mach/thread_info.h>
#include <mach/thread_act.h>
#include <mach/vm_region.h>
#include <mach/vm_map.h>
#include <mach/task.h>
#include <mach/shared_memory_server.h>
typedef struct vmtotal vmtotal_t;
typedef struct { /* dynamic process information */
size_t rss, vsize;
double utime, stime;
} RunProcDyn;
/* On Mac OS X, the only way to get enough information is to become root. Pretty frustrating!*/
int run_get_dynamic_proc_info(pid_t pid, RunProcDyn *rpd)
{
task_t task;
kern_return_t error;
mach_msg_type_number_t count;
thread_array_t thread_table;
thread_basic_info_t thi;
thread_basic_info_data_t thi_data;
unsigned table_size;
struct task_basic_info ti;
error = task_for_pid(mach_task_self(), pid, &task);
if (error != KERN_SUCCESS) {
/* fprintf(stderr, "++ Probably you have to set suid or become root.\n"); */
rpd->rss = rpd->vsize = 0;
rpd->utime = rpd->stime = 0;
return 0;
}
count = TASK_BASIC_INFO_COUNT;
error = task_info(task, TASK_BASIC_INFO, (task_info_t)&ti, &count);
assert(error == KERN_SUCCESS);
{ /* adapted from ps/tasks.c */
vm_region_basic_info_data_64_t b_info;
vm_address_t address = GLOBAL_SHARED_TEXT_SEGMENT;
vm_size_t size;
mach_port_t object_name;
count = VM_REGION_BASIC_INFO_COUNT_64;
error = vm_region_64(task, &address, &size, VM_REGION_BASIC_INFO,
(vm_region_info_t)&b_info, &count, &object_name);
if (error == KERN_SUCCESS) {
if (b_info.reserved && size == (SHARED_TEXT_REGION_SIZE) &&
ti.virtual_size > (SHARED_TEXT_REGION_SIZE + SHARED_DATA_REGION_SIZE))
{
ti.virtual_size -= (SHARED_TEXT_REGION_SIZE + SHARED_DATA_REGION_SIZE);
}
}
rpd->rss = ti.resident_size;
rpd->vsize = ti.virtual_size;
}
{ /* calculate CPU times, adapted from top/libtop.c */
unsigned i;
rpd->utime = ti.user_time.seconds + ti.user_time.microseconds * 1e-6;
rpd->stime = ti.system_time.seconds + ti.system_time.microseconds * 1e-6;
error = task_threads(task, &thread_table, &table_size);
assert(error == KERN_SUCCESS);
thi = &thi_data;
for (i = 0; i != table_size; ++i) {
count = THREAD_BASIC_INFO_COUNT;
error = thread_info(thread_table[i], THREAD_BASIC_INFO, (thread_info_t)thi, &count);
assert(error == KERN_SUCCESS);
if ((thi->flags & TH_FLAGS_IDLE) == 0) {
rpd->utime += thi->user_time.seconds + thi->user_time.microseconds * 1e-6;
rpd->stime += thi->system_time.seconds + thi->system_time.microseconds * 1e-6;
}
if (task != mach_task_self()) {
error = mach_port_deallocate(mach_task_self(), thread_table[i]);
assert(error == KERN_SUCCESS);
}
}
error = vm_deallocate(mach_task_self(), (vm_offset_t)thread_table, table_size * sizeof(thread_array_t));
assert(error == KERN_SUCCESS);
}
mach_port_deallocate(mach_task_self(), task);
return 0;
}
#endif /* __APPLE__ */
1
2
用儀器啓動您的應用程序。把它通過的步伐,並評估結果......
+0
儀器肯定是一個非常有用的程序,謝謝,但我並不總是有權訪問應用程序 –
0
繼@ user172818的意見,我想getrusage
和它的工作對我來說:
#include <sys/time.h>
#include <sys/resource.h>
long getMemoryUsage()
{
struct rusage usage;
if(0 == getrusage(RUSAGE_SELF, &usage))
return usage.ru_maxrss; // bytes
else
return 0;
}
我使用Mac OS X 10.9.4
,與編譯器Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn)
。
相關問題
- 1. 我怎樣才能總是讓我的應用程序響應
- 2. 我怎樣才能在Mac上從Python應用程序
- 3. Android:我怎樣才能讓我的應用程序多語言?
- 4. 我怎樣才能在我的應用程序散列密碼
- 5. 怎樣才能找到我的android 2.3應用程序正在使用多少內存的堆?
- 6. 我怎樣才能在短信應用我的消息在iphone我的應用程序內發出看?
- 7. 我怎樣才能使用我的流星應用程序?
- 8. 我怎樣才能改變我的應用程序的語言
- 9. 我怎樣才能使全部我的VB 6.0應用程序
- 10. 我怎樣才能重新啓動我的iPhone應用程序
- 11. 我怎樣才能讓在Lua的GUI應用程序
- 12. 我怎樣才能在Android上調用Facebook應用程序?
- 13. 我應該在我的Java程序中使用多少內存?
- 14. 我怎樣才能得到我的android應用程序的內部版本號?
- 15. 我怎樣才能找出什麼線程在我的Android應用程序中使用CPU
- 16. 我怎樣才能從我的iPhone應用程序中的目標c
- 17. 我怎樣才能打開我的Android應用程序的多個實例
- 18. 我怎樣才能在Java程序
- 19. 我怎樣才能實現可在我的應用程序中的longclickable
- 20. 我怎樣才能找出我的kivy應用程序的高度和寬度應該是給定設備?
- 21. 我怎樣才能關閉我的應用程序,當我切換到另一個應用程序
- 22. 我怎樣才能整合iPhone應用程序中的代碼
- 23. 我怎樣才能從我的應用程序從Android遠程URL打開PDF
- 24. 我怎樣才能使一個應用程序的許可證在c#開發
- 25. 我怎樣才能在Linux下編譯C++應用程序的ipod/iphone(debian)
- 26. 我怎麼看我的程序在吃多少內存?
- 27. 我怎麼能看到有多少人是在應用程序,我
- 28. 使用InAppSettingsKit,我怎樣才能讓它不出現在設置應用程序?
- 29. 我怎樣才能從DLL通信到調用應用程序在c + +
- 30. 我怎麼能在WPF應用程序
這看起來非常方便,謝謝 –
非常有用的一段代碼。一個註釋:在發佈的代碼中,語句mach_port_deallocate(mach_task_self(),thread_table [i])受到條件(task!= mach_task_self())和mach_port_deallocate(mach_task_self(),任務)的保護)在所有情況下運行。我認爲應該在任務== mach_task_self()調用mach_port_deallocate(mach_task_self(),task)後遇到麻煩(應該有條件地執行後面的語句)。這由文檔支持,mach_task_self()返回一個緩存值。 – tcovo
這非常有用。不幸的是,雖然在當前的SDK –