Removed times() since it is duplicated.

This commit is contained in:
Joel Sherrill
1998-10-19 21:52:40 +00:00
parent ebaeec1113
commit 883ffece78

View File

@@ -22,7 +22,6 @@ The directives provided by the clock manager are:
@item @code{nanosleep} -
@item @code{gettimeofday} - Get the Time of Day
@item @code{time} - Get time in seconds
@item @code{times} - Get process times
@end itemize
@section Background
@@ -273,33 +272,3 @@ memory pointed to by @code{t}.
NONE
@page
@subsection times - Get process times
@subheading CALLING SEQUENCE:
@example
#include <sys/time.h>
int time(
clock_t times(struct tms *buf
);
@end example
@subheading STATUS CODES:
This routine returns the process times
@subheading DESCRIPTION:
@code{times} stores the current process times in @code{buf}.
@code{struct tms} is as defined in @code{/usr/include/sys/times.h}
@code{times} returns the number of clock ticks that have elapsed
since the systm has been up.
@subheading NOTES:
NONE