Erlang source code guide

Viewed 3653

I am interested in delving into Erlang's C source code and try to understand what is going on under the hood. Where can I find info on the design and structure of the code?

5 Answers

A little late to the party here. If you just download the source from GitHub the internal documentation is really good. You have to generate some of it using make.

Get the documentation built and most of the relevant source is under /erts (Erlang Run Time System)

Edit: BEAM Wisdoms is also a really good guide but it may or may not be what you're after.

Related