etime_.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 33 行

C
33
字号
/*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 + =
减小字号Ctrl + -
显示快捷键?