📄 tick.c
字号:
#ifndef lintstatic char sccsid[] = "@(#)tick.c 4.2 (Berkeley) 8/11/83";#endif/* time programs */# include "stdio.h"# include "sys/types.h"# include "sys/timeb.h"struct tbuffer { long proc_user_time; long proc_system_time; long child_user_time; long child_system_time;};static long start, user, system;tick(){ struct tbuffer tx; struct timeb tp; times (&tx); ftime (&tp); user = tx.proc_user_time; system= tx.proc_system_time; start = tp.time*1000+tp.millitm;}tock(){ struct tbuffer tx; struct timeb tp; float lap, use, sys; if (start==0) return; times (&tx); ftime (&tp); lap = (tp.time*1000+tp.millitm-start)/1000.; use = (tx.proc_user_time - user)/60.; sys = (tx.proc_system_time - system)/60.; printf("Elapsed %.2f CPU %.2f (user %.2f, sys %.2f)\n", lap, use+sys, use, sys);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -