Erlang 端口驱动程序与 C 程序通信

发布于 2024-09-25 07:27:24 字数 138 浏览 3 评论 0原文

如果我希望我的 Erlang 进程与 C 共享库连接,我使用端口驱动程序中链接的 Erlang。

由于我希望我的 C 程序存储一些数据结构来响应 erlang 调用,因此我必须使用全局变量。

有什么问题吗?

谢谢!

If I want my Erlang process connect with a C shared lib I use Erlang linked in port driver.

As I want my C program stores some data structures to respond to erlang calls, I must use global variables.

Is there any problem?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

善良天后 2024-10-02 07:27:24

你正在它自己的进程中运行一个 C 程序,并通过管道与它交谈 - Erlang 无法看到你的 C 程序的内存空间,也不关心你如何编写它。你的 Erlang VM 不依赖于你的端口驱动程序——这就是架构的用途。

You are running a c-programme in its own process and talking to it over a pipe - Erlang can't see the memory space of your C programme and doesn't care how you write it. You Erlang VM is not dependant on your port driver - that's what the architecture is for.

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