%%%---------------------------------------------------------------------- %%% File : gproc_app.erl %%% Purpose : GPROC application callback module %%%---------------------------------------------------------------------- -module(gproc_app). -behaviour(application). %% application callbacks -export([start/0, start/2, stop/1]). %%%---------------------------------------------------------------------- %%% Callback functions from application %%%---------------------------------------------------------------------- %%---------------------------------------------------------------------- %% Func: start/2 %% Returns: {ok, Pid} | %% {ok, Pid, State} | %% {error, Reason} %%---------------------------------------------------------------------- start() -> start(xxxwhocares, []). start(_Type, StartArgs) -> case gproc_sup:start_link(StartArgs) of {ok, Pid} -> {ok, Pid}; Error -> Error end. %%---------------------------------------------------------------------- %% Func: stop/1 %% Returns: any %%---------------------------------------------------------------------- stop(_State) -> ok. %%%---------------------------------------------------------------------- %%% Internal functions %%%----------------------------------------------------------------------