私は次のエラーをした:私は私のPHPスクリプト(sudo ./trace-php.d
)を追跡しようとしているとき有効プローブでエラーを修正する方法:無効なアドレス(0x0)?
dtrace: error on enabled probe ID 3 (ID 7343: php15810:php:dtrace_execute_ex:function-return): invalid address (0x0) in action #2 at DIF offset 24
。
は基本的に私が達成したかったPHP関数により配布時間/回数を表示することです。それはうまくいくようですが、私はこのエラーに悩まされます。私は/dev/null
に送ることができますが、理解して修正したいと思います。ここで
は私のDTraceのコードです:
#!/usr/sbin/dtrace -Zs
#pragma D option quiet
php*:::function-entry
{
self->vts = timestamp;
self->cmd = arg0
}
php*:::function-return
/self->vts/
{
@time[copyinstr(self->cmd)] = quantize(timestamp - self->vts);
@num = count();
self->vts = 0;
self->cmd = 0;
}
profile:::tick-2s
{
printf("\nPHP commands/second total: ");
printa("%@d; commands latency (ns) by pid & cmd:", @num);
printa(@time);
clear(@time);
clear(@num);
}
出力例(一部のPHPスクリプトを実行している間)である:
dtrace: error on enabled probe ID 3 (ID 7343: php15810:php:dtrace_execute_ex:function-return): invalid address (0x0) in action #2 at DIF offset 24
dtrace: error on enabled probe ID 3 (ID 7343: php15810:php:dtrace_execute_ex:function-return): invalid address (0x0) in action #2 at DIF offset 24
dtrace: error on enabled probe ID 3 (ID 7343: php15810:php:dtrace_execute_ex:function-return): invalid address (0x0) in action #2 at DIF offset 24
dtrace: error on enabled probe ID 3 (ID 7343: php15810:php:dtrace_execute_ex:function-return): invalid address (0x0) in action #2 at DIF offset 24
PHP commands/second total: 1549; commands latency (ns) by pid & cmd:
variable_get
value ------------- Distribution ------------- count
1024 | 0
2048 |@@@@@@@@@@@@@@@@@@@@@@@@@@@ 4
4096 |@@@@@@@ 1
8192 |@@@@@@@ 1
16384 | 0
__construct
value ------------- Distribution ------------- count
1024 | 0
2048 |@@@@@@@@@@@@@@@@@@@@ 3
4096 |@@@@@@@@@@@@@ 2
8192 |@@@@@@@ 1
16384 | 0
features_array_diff_assoc_recursive
value ------------- Distribution ------------- count
16384 | 0
32768 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 1
65536 | 0
features_export_info
value ------------- Distribution ------------- count
2048 | 0
4096 |@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 122
8192 |@@@@@@ 23
16384 |@ 4
32768 | 0
'arg0'史上' NULL'ですか? –
これは[function_name](http://php.net/manual/en/features.dtrace.dtrace.php)ですのでわかりません。 – kenorb
それは* NULLではないはずです...あなたが 'copyinstr()'呼び出しを行うまでには無効になる可能性はありますか? –