--- title: 実行時間の測定 author: kazu634 date: 2009-05-24 url: /2009/05/24/_1252/ wordtwit_post_info: - 'O:8:"stdClass":13:{s:6:"manual";b:0;s:11:"tweet_times";i:1;s:5:"delay";i:0;s:7:"enabled";i:1;s:10:"separation";s:2:"60";s:7:"version";s:3:"3.7";s:14:"tweet_template";b:0;s:6:"status";i:2;s:6:"result";a:0:{}s:13:"tweet_counter";i:2;s:13:"tweet_log_ids";a:1:{i:0;i:4611;}s:9:"hash_tags";a:0:{}s:8:"accounts";a:1:{i:0;s:7:"kazu634";}}' categories: - C ---
気になったのでメモしておきますね:
#include
double gettimeofday_sec(){
struct timeval t;
gettimeofday(&t, NULL);
return (double)t.tv_sec + (double)t.tv_usec * 1e-6;
}
int main(){
double tstart, tend;
tstart = gettimeofday_sec(); //開始時間取得
/*処理*/
tend = gettimeofday_sec(); //終了時間取得
printf(“%10.20f”,tend – tstart); //処理時間表示
}