[Flightgear-devel] Performance monitoring

2006-05-18 Thread Berndt, Jon S
Title: Performance monitoring Can anyone tell me what the name of the routines is that allows one to determine the performance details of a Linux application? Jon --- Using Tomcat but need to do more? Need to support web services,

Re: [Flightgear-devel] Performance monitoring

2006-05-18 Thread Arnt Karlsen
On Thu, 18 May 2006 10:58:26 -0500, Berndt, wrote in message [EMAIL PROTECTED]: Performance monitoring Can anyone tell me what the name of the routines is that allows one to determine the performance details of a Linux application? ..in the god old days way I use top, but there are way

Re: [Flightgear-devel] Performance monitoring

2006-05-18 Thread Andy Ross
Jon S. Berndt wrote: Can anyone tell me what the name of the routines is that allows one to determine the performance details of a Linux application? It's probably best to start with gprof. Add a -pg argument to the compiler flags for the application, run it, and then use the gprof program to

Re: [Flightgear-devel] Performance monitoring

2006-05-18 Thread Lee Elliott
On Thursday 18 May 2006 16:58, Berndt, Jon S wrote: [HTML snipped...] Can anyone tell me what the name of the routines is that allows one to determine the performance details of a Linux application? Is it 'time' you're thinking of? LeeE

Re: [Flightgear-devel] Performance monitoring

2006-05-18 Thread Anders Gidenstam
On Thu, 18 May 2006, Berndt, Jon S wrote: Can anyone tell me what the name of the routines is that allows one to determine the performance details of a Linux application? Depending on the application it might work to compile it with profiling enabled using the gcc flag -pg: -pg Generate