system - Erlang port driver communicating with C program -


if want erlang process connect c shared lib use erlang linked in port driver.

as want c program stores data structures respond erlang calls, must use global variables.

is there problem?

thanks!

you running c-programme in own process , talking on pipe - erlang can't see memory space of c programme , doesn't care how write it. erlang vm not dependant on port driver - that's architecture for.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -