I have a PID and I want to find out if the process is running in 32bit or in 64bit Intel mode. How?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I can do via NSRunningApplication
.
[[NSRunningApplication runningApplicationWithProcessIdentifier:pid] executableArchitecture]
returns the Mach-O architecture constant.
This works only for GUI applications, though...