def Stop(self, path):
sys.setprofile(None)
# Only one process should write out the file!
if os.getpid() != self.pid:
return
# TODO:
# - report number of events?
# - report number of bytes?
print >>sys.stderr, 'num_events: %d' % self.num_events
print >>sys.stderr, 'Writing to %r' % path
with open(path, 'w') as f:
f.write(self.event_strs.getvalue())
评论列表
文章目录