Am Mittwoch, 21. März 2012, 14:49:03 schrieb Christian Rothländer: > Hi Detlev, > > I use the following command line to start my tool: > > sudo python > /usr/lib64/python3.2/site-packages/eric5/DebugClients/Python/DebugClient.py > -h localhost -n -- tool.py <parameters> > > Originally I planned to use the regular debug function, but this failed > because of the rights problem (eric should run as user, the tool to debug > as root). I'm not a hundred percent sure but as far as I remember you gave > me the hint to use the remote debugging to circumvent my problem.
That is quite possible. I actually am better than I thought ;-) The command line parameters are already in the code. --fork-child to follow into the child --fork-parent to follow the parent If you would start the script to be debugged via the IDE, you would have the same options available in the debug/run dialog. Regards, Detlev > > Christian > > Am 21.03.2012 14:06, schrieb Detlev Offenbach: > > Hello, > > > > can you give more details about the way you are performing the remote > > debugging? Depending on that, it might be built in whar you are looking > > for or I have to extend it. > > > > Detlev > > > > Am Mittwoch, 21. März 2012, 08:10:10 schrieb Christian Rothländer: > >> Hi there, > >> > >> I am using Eric5 for a while now and our project is growing. Because > >> the > >> tool has to run as root we had to use the remote debugging feature, > >> which is working fine so far. > >> > >> I just noticed that one can choose the execution path for threads > >> (parent/child) if one uses the regular debug function. Is there a > >> working way to choose it in a permanent manner while using the remote > >> debugging feature? It would be nice to always stick to the main code > >> and not to try to debug other tools which are called via popen2 or > >> subprocess. (eventually it could be a solution to add a check box to > >> the question, which automatically chooses one of the paths for the > >> next requests) > >> > >> Christian > >> _______________________________________________ > >> Eric mailing list > >> [email protected] > >> http://www.riverbankcomputing.com/mailman/listinfo/eric -- Detlev Offenbach [email protected] _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
