trace.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:raiden 作者: raiden-network 项目源码 文件源码
def trace(self, signum, frame):  # pylint: disable=unused-argument
            """ Signal handler used to take snapshots of the running process. """

            # the last pending signal after trace_stop
            if not self.profiling:
                return

            gc.collect()

            snapshot = tracemalloc.take_snapshot()
            timestamp = time.time()
            sample_data = (timestamp, snapshot)

            # *Must* use the HIGHEST_PROTOCOL, otherwise the serialization will
            # use GBs of memory
            pickle.dump(sample_data, self.trace_stream, protocol=pickle.HIGHEST_PROTOCOL)
            self.trace_stream.flush()
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号