diff -r 1887e3af7b74 -r 16893e193e9d Debugger/DebuggerInterfaceRuby.py --- a/Debugger/DebuggerInterfaceRuby.py Sat Feb 13 13:00:30 2010 +0000 +++ b/Debugger/DebuggerInterfaceRuby.py Sat Feb 13 17:07:34 2010 +0000 @@ -413,13 +413,16 @@ (RequestLoad, wd, fn, str(Utilities.parseOptionString(argv)), traceInterpreter)) - def remoteRun(self, fn, argv, wd): + def remoteRun(self, fn, argv, wd, autoFork = False, forkChild = False): """ Public method to load a new program to run. @param fn the filename to run (string) @param argv the commandline arguments to pass to the program (string) @param wd the working directory for the program (string) + @keyparam autoFork flag indicating the automatic fork mode (boolean) (ignored) + @keyparam forkChild flag indicating to debug the child after forking + (boolean) (ignored) """ wd = self.translate(wd, False) fn = self.translate(os.path.abspath(fn), False)