有没有办法获取我的 C++ 的进程 id 应用?
有没有办法获取我的 C++ 应用程序的进程 ID? 我使用的是Carbon框架,但不是Cocoa......
Is there a way of getting the process id of my C++ application? I am using the Carbon framework, but not Cocoa…
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
GetProcessPID 就是您所需要的。 这需要一个 ProcessSerialNumber,您可以从 GetCurrentProcess 获取它。
GetProcessPID is what you need. This takes a ProcessSerialNumber, which you can obtain from GetCurrentProcess.
请注意,您实际上不需要调用 GetCurrentProcess,您可以使用常量 kCurrentProcess。
(但是,如果您不尝试访问另一个进程的 PID,那么 getpid 的工作量就会少很多。)
Note that you don't actually need to call GetCurrentProcess, you can use the constant kCurrentProcess.
(But getpid is a lot less work if you're not trying to access another process's PID, anyway.)
您可以使用 unistd.h 中的 getpid() 函数吗?
OSX 参考
can you use the getpid() function found in unistd.h ?
osx reference