tree.d

来自「php 开发的内容管理系统」· D 代码 · 共 27 行

D
27
字号
/* * This software is in the public domain. * * $Id: tree.d 10510 2005-08-15 01:46:19Z kateturner $ */#pragma D option quietself int indent;self int times[int];php$target:::function-entry{	@counts[copyinstr(arg0)] = count();        printf("%*s", self->indent, "");        printf("-> %s\n", copyinstr(arg0));	self->times[self->indent] = timestamp;        self->indent += 2;}php$target:::function-return{        self->indent -= 2;        printf("%*s", self->indent, "");        printf("<- %s %dus\n", copyinstr(arg0), (timestamp - self->times[self->indent]) / 1000);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?