So I watched this video from a number of years ago (2008), where Joe Armstrong explains the background of Erlang. video link He makes quite a case, and the piece I am asking about is when he says this at 13:07:
[Erlang is a] concurrent language; by that I mean that processes in the language are part of the programming language. They do not belong to the operating system. That is really what is wrong with languages like Java and C++ is that the threads are not in the programming language; the threads are something that is in the operating system and they inherit all of the problems that they have in the OS. One of the problems is the granularity of the memory management system...
And he goes on about the issues with thread management and how that relates to this disconnect between the language and the OS. And THEN goes on to say that Erlang is uniquely positioned to leverage multi-core technology for that reason, namely that it can manage cores 'directly' without using threads at all? Or did either understand him wrong, or perhaps one or more new languages has arisen in the last 8 years to challenge Erlang in this arena?
Thanks very much for any references or comments that might shed light on this matter.