⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rwinfo.d

📁 Sun Solaris 10 中的 DTrace 组件的源代码。请参看: http://www.sun.com/software/solaris/observability.jsp
💻 D
字号:
struct callinfo {	uint64_t ts;      /* timestamp of last syscall entry */	uint64_t elapsed; /* total elapsed time in nanoseconds */	uint64_t calls;   /* number of calls made */	size_t maxbytes;  /* maximum byte count argument */};struct callinfo i[string];	/* declare i as an associative array */syscall::read:entry, syscall::write:entry/pid == $1/{	i[probefunc].ts = timestamp;	i[probefunc].calls++;	i[probefunc].maxbytes = arg2 > i[probefunc].maxbytes ?		arg2 : i[probefunc].maxbytes;}syscall::read:return, syscall::write:return/i[probefunc].ts != 0 && pid == $1/{	i[probefunc].elapsed += timestamp - i[probefunc].ts;}END{	printf("        calls  max bytes  elapsed nsecs\n");	printf("------  -----  ---------  -------------\n");	printf("  read  %5d  %9d  %d\n",	    i["read"].calls, i["read"].maxbytes, i["read"].elapsed);	printf(" write  %5d  %9d  %d\n",	    i["write"].calls, i["write"].maxbytes, i["write"].elapsed);}

⌨️ 快捷键说明

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