Unix and Linux Discussions Tagged with times |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
14,392 |
What is on Your Mind? |
|
|
|
0 |
19,124 |
Web Development |
|
|
|
5 |
1,603 |
Shell Programming and Scripting |
|
|
|
5 |
1,109 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
370 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,988 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
635 |
What is on Your Mind? |
|
|
|
3 |
1,721 |
Shell Programming and Scripting |
|
|
|
2 |
83,544 |
Shell Programming and Scripting |
|
|
|
3 |
7,602 |
AIX |
|
|
|
3 |
18,433 |
Linux |
|
|
|
0 |
1,990 |
Cartoons for Geeks |
|
|
|
9 |
11,827 |
Shell Programming and Scripting |
|
|
|
0 |
1,131 |
Complex Event Processing RSS News |
|
|
|
1 |
2,971 |
Shell Programming and Scripting |
|
|
|
2 |
4,692 |
Shell Programming and Scripting |
|
|
|
7 |
3,538 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,775 |
Shell Programming and Scripting |
|
|
|
0 |
2,719 |
Oracle Updates (RSS) |
|
|
|
0 |
4,488 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,007 |
Shell Programming and Scripting |
|
|
|
1 |
1,721 |
Shell Programming and Scripting |
|
|
|
2 |
1,927 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,222 |
Shell Programming and Scripting |
|
|
|
14 |
3,873 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,717 |
Shell Programming and Scripting |
|
|
|
0 |
5,231 |
Programming |
|
|
|
2 |
9,538 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
17,388 |
Shell Programming and Scripting |
|
|
|
6 |
3,181 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,005 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,768 |
Programming |
|
|
|
4 |
1,929 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,702 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,999 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,075 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,879 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,270 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
36,345 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,021 |
Programming |
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)