Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

times.h(7posix) [linux man page]

<sys/times.h>(P)					     POSIX Programmer's Manual						  <sys/times.h>(P)

NAME
sys/times.h - file access and modification times structure SYNOPSIS
#include <sys/times.h> DESCRIPTION
The <sys/times.h> header shall define the structure tms, which is returned by times() and includes at least the following members: clock_t tms_utime User CPU time. clock_t tms_stime System CPU time. clock_t tms_cutime User CPU time of terminated child processes. clock_t tms_cstime System CPU time of terminated child processes. The clock_t type shall be defined as described in <sys/types.h> . The following shall be declared as a function and may also be defined as a macro. A function prototype shall be provided. clock_t times(struct tms *); The following sections are informative. APPLICATION USAGE
None. RATIONALE
None. FUTURE DIRECTIONS
None. SEE ALSO
<sys/types.h> , the System Interfaces volume of IEEE Std 1003.1-2001, times() COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2003 Edition, Standard for Information Technol- ogy -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html . IEEE
/The Open Group 2003 <sys/times.h>(P)

Check Out this Related Man Page

times.h(3HEAD)							      Headers							    times.h(3HEAD)

NAME
times.h, times - file access and modification times structure SYNOPSIS
#include <sys/times.h> DESCRIPTION
The <sys/times.h> header defines the structure tms, which is returned by times() and includes the following members: clock_t tms_utime /* user CPU time */ clock_t tms_stime /* system CPU time */ clock_t tms_cutime /* user CPU time of terminated child processes */ clock_t tms_cstime /* system CPU time of terminated child processes */ The clock_t type is defined as described in <sys/types.h>. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
times(2), types.h(3HEAD), attributes(5), standards(5) SunOS 5.11 10 Sep 2004 times.h(3HEAD)
Man Page

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What file types does unix support?

Hello, I've search this site many times and ave not been able to find my answer. So I'm going to post my question....(duh) Ok. I'm wanting to know what file types does unix support. if you can try and list them like this: php, .php or somthing like that. plus don't forget that I said I... (3 Replies)
Discussion started by: dgames
3 Replies

2. UNIX for Advanced & Expert Users

kswapd

Could someone please explain in detail what kswapd is exactly. and why it might take up large amounts of CPU memory at times. (1 Reply)
Discussion started by: cubs0729
1 Replies

3. Programming

Problem with implementing the times() function in C (struct tms times return zero/negative values)

Hello, i'm trying to implement the times() function and i'm programming in C. I'm using the "struct tms" structure which consists of the fields: The tms_utime structure member is the CPU time charged for the execution of user instructions of the calling process. The tms_stime structure... (1 Reply)
Discussion started by: g_p
1 Replies