Return a list of running background apps/processes in iOS

前端 未结 1 412
轮回少年
轮回少年 2020-11-30 13:27

I\'m working on a jailbreak app, and want to send SIGKILL messages to specific apps that may be running on a user\'s device (with their permission, of course).<

相关标签:
1条回答
  • 2020-11-30 13:47

    Make a sysctl API and retrieve the kinfo_proc structure http://fxr.watson.org/fxr/source/sys/kinfo.h?v=DFBSD. This struct has information about running processes.You can run it in a loop until to get info about all processes. Here is a code snippet- extend it to get info of all processes

    mib[0] = CTL_KERN;   
    mib[1] = KERN_PROC;  
    mib[2] = KERN_PROC_ALL; 
    mib[3] = 0;  
    ret = sysctl(mib, 4, NULL, &size, NULL, 0); 
    procs = malloc(size);
    ret = sysctl(mib, 4, procs, &size, NULL, 0); /* procs is struct kinfo_proc.*/
    
    0 讨论(0)
提交回复
热议问题