开始“不相关” 32 位应用程序的 64 位应用程序

发布于 2024-08-17 02:52:14 字数 230 浏览 2 评论 0原文

有没有一种优雅的方法可以从 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 技术交流群。

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

发布评论

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

评论(1

赠我空喜 2024-08-24 02:52:14

使用 fork() 然后使用 exec()。一般来说,即使在混合环境中,多进程的内容也保持不变。

Use fork() then exec(). Generally multi-process stuff remains the same even in a mixed environment.

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