2006 2011 Ericsson AB, All Rights Reserved The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the Erlang Public License along with this software. If not, it can be retrieved online at http://www.erlang.org/. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Initial Developer of the Original Code is Ericsson AB. inviso_as_lib
inviso_as_lib The Inviso Autostart Utility Library

The purpose of the Inviso autostart utility library is to facilitate the creation and modification of autostart configuration files used by the standard autostart.

setup_autostart(Node, R, Opts, TracerData, CmdFiles, Bindings, Transl, RTtag) -> ok | {error, Reason} Create an autostart configuration file Node = atom() R = int() Opts -- see inviso:add_nodes/2,3 TracerData -- see inviso:init_tracing/1,2 CmdFiles = [CmdFile]  CmdFile = string() Bindings = [{Var,Val}]  Var = atom()  Val = term() Transl = [{{M1,F1,Arity}, {M2,F2,{Mt,Ft}}}]  M1 = F1 = M2 = F2 = Mt = Ft = atom()  Arity = int() RTtag = term() Reason = term()

Creates an autostart configuration file on Node. The name of the file is automatically deducted from consulting the Runtime_Tools configuration parameters at Node.

R is the number of allowed autostarts remaining.

Opts is the options which shall be given to the runtime component. See inviso:add_nodes/2,3.

TracerData is used when initiating tracing on this node. See inviso:init_tracing/1,2.

CmdFiles points out files containing instructions understood by the inviso_autostart_server implementation of an autostart initiator.

Bindings is a list of {Var, Val} tuples, where Var is the name of a variable and Val the actual value of the variable.

Transl means that M1:F1/Arity shall be translated into M2:F2.

RTtag is the incarnation tag of the runtime component. See See inviso:add_nodes/2,3.

set_repeat(Node, R) -> ok | {error, Reason} Set the repeat parameter in the autostart file Node = atom() R = int() Reason = term()

Sets the repeat parameter in the autostart file at Node without changing any of its other contents. The autostart configuration file must exist.

R is the number of allowed autostarts remaining.

inhibit_autostart(Node) -> ok | {error, Reason} Set the repeat parameter in the autostart file to 0 Node = atom() Reason = term()

Sets the repeat parameter in the autostart file at Node to 0. Equivalent to set_repeat(Node, 0).