[m5-dev] changeset in m5: tracing: panic() if people try to use tracing, ...

2009-01-19 Thread Nathan Binkert
changeset 0af61da2b66a in /z/repo/m5 details: http://repo.m5sim.org/m5?cmd=changeset;node=0af61da2b66a description: tracing: panic() if people try to use tracing, but TRACING_ON is not set. Also clean things up so that help strings can more easily be added. Move the help

Re: [m5-dev] changeset in m5: tracing: panic() if people try to use tracing, ...

2009-01-19 Thread Ali Saidi
True... Also I'm really glad to see it added. The number of hours I've wasted trying to trace a problem with m5.fast are quite numerous. Ali On Jan 19, 2009, at 1:45 PM, Steve Reinhardt wrote: This should be a fatal(), not a panic()... from src/base/misc.hh: 46 // This implements a

Re: [m5-dev] changeset in m5: tracing: panic() if people try to use tracing, ...

2009-01-19 Thread nathan binkert
Well, this was in python which didn't actually have a fatal() function. I just added it and converted this one thing to use it. There are many other instances of panic() in python most of which should technically be fatal(). Nate 2009/1/19 Steve Reinhardt ste...@gmail.com: This should be a