0

CentOS では、システム コールに費やされた時間を含む C プログラムをプロファイリングするコマンドラインはどれですか? yum と一緒にインストールする必要があるプログラムは何ですか?

4

1 に答える 1

1

oprofile をインストールします。yum install oprofile

oprofile を初期化します。

opcontrol --no-vmlinux #If you have vmlinux set this option differently
opcontrol --init
opcontrol --reset
opcontrol --separate=lib
opcontrol --callgraph=0    # clear callgraph in case it was used recently
opcontrol --start

プロファイリングするプログラムを実行します。十分な時間が経過したら、次の手順を実行します。

opcontrol --dump
opreport --symbols /path/to/executable

その他の出力例については、こちらを参照してください。

于 2012-10-11T21:07:21.313 に答える