有没有办法获取我的 C++ 的进程 id 应用?

发布于 2024-07-05 13:42:47 字数 62 浏览 10 评论 0原文

有没有办法获取我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不知所踪 2024-07-12 13:42:47

GetProcessPID 就是您所需要的。 这需要一个 ProcessSerialNumber,您可以从 GetCurrentProcess 获取它。

GetProcessPID is what you need. This takes a ProcessSerialNumber, which you can obtain from GetCurrentProcess.

苍暮颜 2024-07-12 13:42:47

请注意,您实际上不需要调用 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.)

红玫瑰 2024-07-12 13:42:47

您可以使用 unistd.h 中的 getpid() 函数吗?

OSX 参考

can you use the getpid() function found in unistd.h ?

osx reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文