times
krijg proces tijden
1. times.2.man
Manpage of TIMES
TIMES
Section: Linux Programmeurs Handleiding (2)Updated: 24 Juli 1993
Index Return to Main Contents
NAAM
times - krijg proces tijdenOVERZICHT
#include <sys/times.h>clock_t times(struct tms *buf);
BESCHRIJVING
times slaat tijden van het huidige proces op in buf. struct tms is zoals bepaald in /usr/include/sys/times.h:
struct tms {
clock_t tms_utime; /* gebruiker tijd */
clock_t tms_stime; /* systeem tijd */
clock_t tms_cutime; /* gebruikers tijd van kinderen */
clock_t tms_cstime; /* systeem tijd van kinderen */
};
times geeft het aantal klok tikken die voorbijgegaan zijn sinds het systeem aan was.
VOLDOET AAN
SVr4, SVID, POSIX, X/OPEN, BSD 4.3ZIE
time(1) {tijd}, getrusage(2) {krijg hulpbronnen gebruik}, wait(2) {wacht}VERTALING
Alles wat tussen `{'..`}' staat is aanvullende vertaling, en hoort niet bij de originele handleiding. Deze handleiding uit manpages-dev 1.29 werd vertaald door JHBoersema. Email naar <manpages-nl@nl.linux.org>.$Id: times.2,v 1.1 2001/03/28 21:06:47 joostvb Exp $
Index
This document was created by man2html using the manual pages.
Time: 23:25:44 GMT, July 09, 2008


