Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用子进程替换父进程,同时保持相同的 PID。
我怎样才能在 Windows 中做到这一点?
Ps:我正在尝试制作一个“代理”程序,该程序在另一个程序 X 之前运行另一个程序 Y 调用。Y 应该看到一个具有相同 PID 的孩子。
在 Windows 中是不可能的。在 Linux 中,exec()系统调用完全符合您的要求,但在 Windows 上,没有这样的等价物。