Unix and Linux Discussions Tagged with times |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
26,740 |
What is on Your Mind? |
|
|
|
0 |
59,555 |
Web Development |
|
|
|
5 |
8,108 |
Shell Programming and Scripting |
|
|
|
5 |
3,232 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,565 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,483 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,486 |
What is on Your Mind? |
|
|
|
3 |
2,335 |
Shell Programming and Scripting |
|
|
|
2 |
89,889 |
Shell Programming and Scripting |
|
|
|
3 |
13,506 |
AIX |
|
|
|
3 |
19,876 |
Linux |
|
|
|
0 |
3,035 |
Cartoons for Geeks |
|
|
|
9 |
13,820 |
Shell Programming and Scripting |
|
|
|
0 |
1,956 |
Complex Event Processing RSS News |
|
|
|
1 |
3,754 |
Shell Programming and Scripting |
|
|
|
2 |
5,542 |
Shell Programming and Scripting |
|
|
|
7 |
4,501 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,335 |
Shell Programming and Scripting |
|
|
|
0 |
3,392 |
Oracle Updates (RSS) |
|
|
|
0 |
5,166 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,773 |
Shell Programming and Scripting |
|
|
|
1 |
2,291 |
Shell Programming and Scripting |
|
|
|
2 |
2,551 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
6,060 |
Shell Programming and Scripting |
|
|
|
14 |
8,001 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,302 |
Shell Programming and Scripting |
|
|
|
0 |
7,074 |
Programming |
|
|
|
2 |
11,081 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
35,850 |
Shell Programming and Scripting |
|
|
|
6 |
4,453 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,045 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
4,620 |
Programming |
|
|
|
4 |
2,725 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
7,403 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,208 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
7,232 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,068 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,766 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
40,419 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,579 |
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.10 10 Sep 2004 times.h(3HEAD)