appevents.py 333 B

12345678910111213
  1. import sim
  2. class AppEvents:
  3. def hook_application_start(self, appid):
  4. print '[APP]', appid, 'start'
  5. sim.stats.marker(-1, -1, appid, 0, "application start")
  6. def hook_application_exit(self, appid):
  7. print '[APP]', appid, 'exit'
  8. sim.stats.marker(-1, -1, appid, 0, "application exit")
  9. sim.util.register(AppEvents())