Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://jet.sao.ru/hq/sts/linux/book/c_marshall/section2_22_27.html
Дата изменения: Unknown Дата индексирования: Tue Oct 2 09:24:27 2012 Кодировка: Поисковые слова: earth's atmosphere |
#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); }