タグ

ブックマーク / blog.majide.com (1)

  • プロファイラ gprof の使い方 | イイ!! プログラミング Blog

    gprof GNU Profiler とは プロファイラあるプログラム中で使用される関数毎に、その実行回数や実行時間を分析して表示するツールです。プログラムが思ったようなパフォーマンスが出ない場合、ボトルネックになっている場所を特定するために利用します。 実行例 % cumulative self self total time seconds seconds calls ms/call ms/call name 0.0 0.00 0.00 3 0.00 0.00 read [1] //read()が3回 0.0 0.00 0.00 2 0.00 0.00 write [2] //write()が2回 呼ばれている 0.0 0.00 0.00 1 0.00 0.00 ___sysctl [138] 0.0 0.00 0.00 1 0.00 0.00 _close [139] 0.0 0.0

    stray346
    stray346 2010/09/15
  • 1