Skip to content

Instantly share code, notes, and snippets.

@marcelog
Created May 10, 2016 19:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save marcelog/7ee235979a7f0adc8890f712866a6f56 to your computer and use it in GitHub Desktop.
Save marcelog/7ee235979a7f0adc8890f712866a6f56 to your computer and use it in GitHub Desktop.
-module(mymodule).
start_link() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
...
crash() ->
gen_server:cast(?MODULE, crash).
...
handle_cast(crash,State) ->
{stop, error, State};
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment