[Erlang Systems]

supervisor

MODULE

MODULE SUMMARY

DESCRIPTION

EXPORTS

start_link(Module,StartArgs) -> SupRet
start_link(SupName,Module,StartArgs) -> SupRet

start_child(Supervisor,ChildSpec | ExtraStartArgs) -> {ok, Child} | {error, Reason}

terminate_child(Supervisor, Name) -> ok | {error, not_found}

delete_child(Supervisor,Name) -> ok | {error, running | not_found}

restart_child(Supervisor,Name) -> {ok, Pid} | {error, running | not_found | Reason}

which_children(Supervisor) -> [{Name, Pid, Type, Modules}]

check_childspecs([ChildSpec]) -> ok | {error, Reason}

Callback Functions

EXPORTS

Module:init(StartArgs) -> {ok, {SupFlags, [ChildSpec]}} | ignore | {error, Reason}

System Events

See Also

AUTHORS


Copyright © 1991-97 Ericsson Telecom AB