_times.c

来自「操作系统源代码」· C语言 代码 · 共 19 行

C
19
字号
#include <lib.h>#define times	_times#include <sys/times.h>#include <time.h>PUBLIC clock_t times(buf)struct tms *buf;{  message m;  m.m4_l5 = 0;			/* return this if system is pre-1.6 */  if (_syscall(FS, TIMES, &m) < 0) return( (clock_t) -1);  buf->tms_utime = m.m4_l1;  buf->tms_stime = m.m4_l2;  buf->tms_cutime = m.m4_l3;  buf->tms_cstime = m.m4_l4;  return(m.m4_l5);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?