[erlang-questions] Embed Erlang VM into an OS/X XPC Service
20 views
Skip to first unread message
Garry Watkins
unread,
May 20, 2013, 3:29:41 PM5/20/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to erlang-q...@erlang.org
I am interested in developing a OS/X XPC Service that has a erlang vm running in it.
The main OS/X program would send XPC messages to the ERL XPC Service. The service would then process that message and do the appropriate thing.
Is there a way that I can build erlang as a shared library that I can call from C. I need it to run within the XPC container so it will stay sandboxed correctly.
Thanks
Yogish Baliga
unread,
May 20, 2013, 3:55:03 PM5/20/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Garry Watkins, Erlang Questions
Hello Garry,
You can develop a C-node that can communicate with Erlang node OR you can listen on a TCP port in Erlang node, client can send message to Erlang node over TCP port.