Content deleted Content added
→History: cite thesis that has full ban quote and context. give months for dates - ban happened before AXD301 was released. |
mNo edit summary |
||
Line 276:
While [[Thread (computing)|threads]] need external library support in most languages, Erlang provides language-level features to create and manage processes with the goal of simplifying concurrent programming. Though all concurrency is explicit in Erlang, processes communicate using [[message passing]] instead of shared variables, which removes the need for explicit [[Lock (computer science)|locks]] (a locking scheme is still used internally by the VM).<ref>{{cite web |title=Lock-free message queue |url=http://erlang.2086793.n4.nabble.com/Lock-free-message-queue-td2550221.html |access-date=23 December 2013}}</ref>
[[Inter-process communication]] works via a [[
The code example below shows the built-in support for distributed processes:
|