使用vbs代码查看某个进程是否在运行,本文要检查的进程名为 QRscan.exe,其代码如下: sub CheckProcess Dim WMI,Objs,Process,ObjSet WMI=GetObject("WinMgmts:")Set Objs=WMI.InstancesOf("Win32_Process")Process="" '遍历所有在运行的进程For Each Obj In Objs'Process=Process &
long add(long x,long y) { pid_t fpid; //fpid表示fork函数返回的值 int count=0; fpid=fork(); if (fpid < 0) LOGI("error in fork!"); else if (fpid == 0) { LOGI("i am the child process, my process id is %d/n",getpid()); count++; return x; } else
1什么是进程:进程是一个执行中的程序 执行的程序: 代码->资源->CPU 进程有很多数据维护:进程状态/进程属性 所有进程属性采用的一个树形结构体维护 ps -a//所有进程 ps -aue //有效进程 进程状态:(man ps) D Uninterruptible sleep (usually IO) R Running or runnable (on run queue) S Interruptible sleep (wai