soffice.d
来自「Sun Solaris 10 中的 DTrace 组件的源代码。请参看: htt」· D 代码 · 共 27 行
D
27 行
vminfo:::maj_fault,vminfo:::zfod,vminfo:::as_fault/execname == "soffice.bin" && start == 0/{ /* * This is the first time that a vminfo probe has been hit; record * our initial timestamp. */ start = timestamp;}vminfo:::maj_fault,vminfo:::zfod,vminfo:::as_fault/execname == "soffice.bin"/{ /* * Aggregate on the probename, and lquantize() the number of seconds * since our initial timestamp. (There are 1,000,000,000 nanoseconds * in a second.) We assume that the script will be terminated before * 60 seconds elapses. */ @[probename] = lquantize((timestamp - start) / 1000000000, 0, 60);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?