|
Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://mavr.sao.ru/hq/sts/linux/book/c_marshall/section2_22_27.html
Дата изменения: Unknown Дата индексирования: Fri Dec 28 19:40:18 2007 Кодировка: Поисковые слова: http www.astronomy.ru forum index.php topic 4644.0.html |
#include <sys/types.h>
#include <sys/times.h>
main()
{
struct tms before, after;
times(&before);
/* ... place code to be timed here ... */
times(&after);
printf("User time: %ld seconds\n", after.tms_utime -
before.tms_utime);
printf("System time: %ld seconds\n", after.tms_stime -
before.tms_stime);
exit(0);
}