Unix and Linux Discussions Tagged with times |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
14,643 |
What is on Your Mind? |
|
|
|
0 |
19,266 |
Web Development |
|
|
|
5 |
1,649 |
Shell Programming and Scripting |
|
|
|
5 |
1,120 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
380 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,019 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
640 |
What is on Your Mind? |
|
|
|
3 |
1,724 |
Shell Programming and Scripting |
|
|
|
2 |
83,649 |
Shell Programming and Scripting |
|
|
|
3 |
7,637 |
AIX |
|
|
|
3 |
18,447 |
Linux |
|
|
|
0 |
1,995 |
Cartoons for Geeks |
|
|
|
9 |
11,863 |
Shell Programming and Scripting |
|
|
|
0 |
1,134 |
Complex Event Processing RSS News |
|
|
|
1 |
2,976 |
Shell Programming and Scripting |
|
|
|
2 |
4,703 |
Shell Programming and Scripting |
|
|
|
7 |
3,544 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,776 |
Shell Programming and Scripting |
|
|
|
0 |
2,721 |
Oracle Updates (RSS) |
|
|
|
0 |
4,493 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,027 |
Shell Programming and Scripting |
|
|
|
1 |
1,724 |
Shell Programming and Scripting |
|
|
|
2 |
1,931 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,231 |
Shell Programming and Scripting |
|
|
|
14 |
3,886 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,719 |
Shell Programming and Scripting |
|
|
|
0 |
5,244 |
Programming |
|
|
|
2 |
9,545 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
17,594 |
Shell Programming and Scripting |
|
|
|
6 |
3,190 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,010 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,773 |
Programming |
|
|
|
4 |
1,932 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,714 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,007 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,082 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,891 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,281 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
36,396 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,027 |
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)