Erlang 端口驱动程序与 C 程序通信
如果我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你正在它自己的进程中运行一个 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.