home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
rtsi.com
/
2014.01.www.rtsi.com.tar
/
www.rtsi.com
/
OS9
/
OSK
/
EFFO
/
forum7.lzh
/
RICO
/
MAN
/
man.times
< prev
next >
Wrap
Text File
|
1988-09-26
|
607b
|
41 lines
TIMES() os9-68000 Programmers Manual TIMES()
NAME
times - get user and system cpu times
SYNOPSIS
#include <time.h>
times(buffer)
struct tms *buffer;
DESCRIPTION
Returns time-accounting information for the current process
in buffer. This is the structure returned by times:
struct tms { long tmsutime; long tmsstime; };
/* System and user time in milliseconds */
LIBRARY
use clock.l
SEE ALSO
clock(1),usertime(1),systemtime(1),cputime(1)
AUTHOR
Rico Cozzio