开始“不相关” 32 位应用程序的 64 位应用程序
有没有一种优雅的方法可以从 32 位编译的应用程序启动 64 位进程?
问题是我需要在 32 位 Sparc V8 模式下编译一部分。另一部分是为更快的 64 位环境编写的(不模拟 64 位乘法)。我想使用信号量同步它们并通过共享内存进行通信。
fork、system 等的手册页显示,父进程会被挂起,直到子进程终止。有没有更好的方法来做到这一点,因为我不想手动启动进程。
最良好的问候 伯恩哈德
is there an elegant way to start a 64 bit process from an 32 bit compiled application?
The problem is that i need to compile one part in 32bit Sparc V8 mode. The other part is written for a faster 64 bit environment (no emulation on 64bit multiplication). I want to synchronize them using semaphore and communicate via shared memory.
Man pages for fork, system etc. show that the parent process gets suspended until the child process terminates. Is there a better way to do so because i dont want to start the processes manually.
best regard
Bernhard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 fork() 然后使用 exec()。一般来说,即使在混合环境中,多进程的内容也保持不变。
Use fork() then exec(). Generally multi-process stuff remains the same even in a mixed environment.