Tagged Questions
The erl tag has no wiki summary.
7
votes
2answers
1k views
What do the Erlang emulator info statements mean?
When I start up my Erlang emulator, there the first bit has a bunch of informational things. (Slightly reformatted for effect.)
manoa:~ stu$ erl
Erlang (BEAM) emulator version 5.6.5
[source] ...
6
votes
3answers
333 views
Erlang: Who supervises the supervisor?
In all Erlang supervisor examples I have seen yet, there usually is a "master" supervisor who supervises the whole tree (or at least is the root node in the supervisor tree). What if the ...
5
votes
2answers
296 views
Why use OTP with erlang?
As the question said: What benefits brings using the OTP design principles when developing with erlang?
(I am developing a server which will just receive commands and send responses)
5
votes
4answers
340 views
Speeding up the Erlang Edit, Compile, Run/Debug cycle
What is the fastest way to edit an Erlang application, compile the code and see the running result? Preferably jumping in the Erlang shell on the last step.
My current newbie setup:
A script that ...
4
votes
2answers
208 views
usage of erlang heart
How should heart be used to keep an application alive?
Lets say I have an application X, will it be monitored if I just call something like:
erl -boot X -heart -env HEART_BEAT_TIMEOUT 30 -detached
...
3
votes
3answers
366 views
Getting two erl shells to talk on OS X
I want to be able to have two Erlang shells to talk. I'm running on OS X.
I tried the tut17 example here: http://ftp.sunet.se/pub/lang/erlang/doc/getting_started/conc_prog.html
I've also tried:
$ ...
3
votes
2answers
595 views
Records in Erl (Erlang question)
Is there a way to use records directly in erl? No matter what I try, it always says it canno find the record. I am trying to do mnesia transactions and I cannot go too far without my records. Any ...
2
votes
2answers
67 views
erl VM - how to load my module on startup ( c(modulename) )
I can run erl from my application and it must be turned on, I really don't want to make win32API Hook + sentMessage to run c(mymodulename), that's why I'm interesting if there some auto-load for ...
1
vote
1answer
167 views
Load all erlang modules in path
Using the answer from Easy way of loading projects with rebar dependencies, dependencies are now automatically resolved, but they are not automatically loaded.
So, how can I load all the modules in ...
0
votes
1answer
47 views
Why are erlang lib changes not being incorporated into my project?
I'm using eclipse 3.6.2 with erlang 5.8.1.1 on a fairly large project that we're not ready to move to a more modern version of the language, so I'm stuck with a bug in eprof:
string_bp_mfa([{Mfa, ...
0
votes
4answers
271 views
Erlang VM -s argument misbehaving
When I start up a function within the erl shell, it works fine. When I try to invoke the same function with erl ... -s module function, it fails.
The line of code that eventually fails is:
...