Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ times(3) — Ultrix-32 2.0

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

time(1)

getrusage(2)

wait3(2)

time(3)

times(3)

NAME

times − get process times

SYNTAX

#include <sys/types.h>
#include <sys/times.h>

times(buffer)
struct tms *buffer;

DESCRIPTION

The times subroutine returns time-accounting information for the current process and for the terminated child processes of the current process. All times are in 1/HZ seconds, where HZ is 60.

This is the structure returned by times:

 struct tms {
        time_t  tms_utime;     /* user time */
        time_t  tms_stime;     /* system time */
        time_t  tms_cutime;    /* user time, children */
        time_t  tms_cstime;    /* system time, children */
};
 

The children times are the sum of the children’s process times and their children’s times. 

ENVIRONMENT

When your program is compiled using the System V environment, the elapsed time is returned in seconds since system startup (instead of 0) upon success. 

SEE ALSO

time(1), getrusage(2), wait3(2), time(3)

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026