// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab // Copyright (C) 2008 - INRIA - Vincent COUVERT // // This file must be used under the terms of the CeCILL. // This source file is licensed as described in the file COPYING, which // you should have received as part of this distribution. The terms // are also available at // http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt function status = TCL_CreateSlave(slaveName, isSafe) // slaveName: name of the slave to create // isSafe: %T to create a safe slave, %F otherwise (default) // Input arguments tests [lhs, rhs] = argn(); if rhs<>1 & rhs<>2 then error(msprintf(gettext("%s: Wrong number of input argument(s): %d to %d expected.\n"), "TCL_CreateSlave", 1, 2)); end if lhs<>1 then error(msprintf(gettext("%s: Wrong number of output argument(s): %d expected.\n"), "TCL_CreateSlave", 1)); end if typeof(slaveName)<>"string" then error(msprintf(gettext("%s: Wrong type for input argument #%d: A String expected.\n"), "TCL_CreateSlave", 1)); end if rhs==1 then isSafe = %F; // Create an unsafe slave by default end if typeof(isSafe)<>"boolean" then error(msprintf(gettext("%s: Wrong type for input argument #%d: A Boolean expected.\n"), "TCL_CreateSlave", 2)); end if TCL_ExistInterp(slaveName) then error(msprintf(gettext("%s: Slave interpreter already exists.\n"),"TCL_CreateSlave")); end if isSafe then status = TCL_EvalStr("interp create -safe "+slaveName); else status = TCL_EvalStr("interp create "+slaveName); end endfunction