diff options
author | Stavros Aronis <[email protected]> | 2010-06-08 20:55:26 +0300 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-10-07 17:17:07 +0200 |
commit | ed72d05e27fcf1d4f649014ffd7a1c2878b5b010 (patch) | |
tree | b22eb07f52606bc7ab5c7339026d007784aef0a4 /lib/kernel | |
parent | 3ae841405f4005b52950a74727578deea2aee209 (diff) | |
download | otp-ed72d05e27fcf1d4f649014ffd7a1c2878b5b010.tar.gz otp-ed72d05e27fcf1d4f649014ffd7a1c2878b5b010.tar.bz2 otp-ed72d05e27fcf1d4f649014ffd7a1c2878b5b010.zip |
Add callback specs into 'application' module in kernel
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/src/application.erl | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/kernel/src/application.erl b/lib/kernel/src/application.erl index fa3a4c3d36..caac4d926c 100644 --- a/lib/kernel/src/application.erl +++ b/lib/kernel/src/application.erl @@ -28,8 +28,6 @@ -export([get_application/0, get_application/1, info/0]). -export([start_type/0]). --export([behaviour_info/1]). - %%%----------------------------------------------------------------- -type start_type() :: 'normal' @@ -59,12 +57,12 @@ %%------------------------------------------------------------------ --spec behaviour_info(atom()) -> 'undefined' | [{atom(), byte()}]. +-callback start(StartType :: normal | {takeover, node()} | {failover, node()}, + StartArgs :: term()) -> + {ok, pid()} | {ok, pid(), State :: term()} | {error, Reason :: term}. -behaviour_info(callbacks) -> - [{start,2},{stop,1}]; -behaviour_info(_Other) -> - undefined. +-callback stop(State :: term()) -> + term(). %%%----------------------------------------------------------------- %%% This module is API towards application_controller and |