Hi,
I have a shell script executed at boot-up that has "/sbin/m5 dumpstats" and
"/sbin/m5 resetstats" inserted between every 2 tasks. While more than 3-4
tasks have been completed, I only have 1 set of stats so far. What could I
be doing wrong?
Regards,
Kirtika




=====================
do_something_1(){
# does something
}

do_something_2() {
# does something
}

do_something_3() {
# does something
}

do_run(){
   do_something_1
   /sbin/m5 dumpstats
   /sbin/m5 resetstats
   do_something_2
   /sbin/m5 dumpstats
   /sbin/m5 resetstats
  do_something_3
  /sbin/m5 dumpstats
  stop_m5
  return

}


/sbin/m5 dumpstats
/sbin/m5 resetstats
do_run()
_______________________________________________
gem5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

Reply via email to