Skip to content

Instantly share code, notes, and snippets.

@Zert
Created December 8, 2010 17:00
Show Gist options
  • Save Zert/733552 to your computer and use it in GitHub Desktop.
Save Zert/733552 to your computer and use it in GitHub Desktop.
3> c(t).
{ok,t}
4> {ok, Pid} = t:start_link().
{ok,<0.47.0>}
5> exit(Pid, kill).
** exception exit: killed
6> exit(Pid, kill).
true
7> f().
ok
8> {ok, Pid} = t:start_link().
{ok,<0.53.0>}
9> exit(Pid, normal).
Terminate: normal
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment