MacOSX:查明进程(给定PID)是以32位还是64位Intel模式运行

时间:2011-09-07 14:06:10

标签: macos unix pid mach-o

我有一个PID,我想知道该进程是在32位还是64位Intel模式下运行。怎么样?

1 个答案:

答案 0 :(得分:4)

我可以通过NSRunningApplication完成。

[[NSRunningApplication runningApplicationWithProcessIdentifier:pid] executableArchitecture]

返回Mach-O architecture constant

这仅适用于GUI应用程序,但是......