📄 etime_.c
字号:
/*char id_etime[] = "@(#)etime_.c 1.1"; * * Return the elapsed execution time for this process. * * calling sequence: * real time(2) * call etime (time) * where: * the 2 element array, time, will receive the user and system * elapsed time since the start of execution. * * This routine can be called as function, and returns the sum of * user and system times. The time array argument must always be given. * * The resolution for all timing is 1/60 second. */#include <sys/types.h>#include <sys/times.h>struct tb { float usrtime; float systime; };floatetime_(et) struct tb *et;{ struct tms clock; times(&clock); et->usrtime = (float) clock.tms_utime / 60.0; et->systime = (float) clock.tms_stime / 60.0; return(et->usrtime + et->systime);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -