Unix and Linux Discussions Tagged with times |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
16,605 |
What is on Your Mind? |
|
|
|
0 |
33,005 |
Web Development |
|
|
|
5 |
2,280 |
Shell Programming and Scripting |
|
|
|
5 |
1,428 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
577 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,913 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
1,209 |
What is on Your Mind? |
|
|
|
3 |
1,893 |
Shell Programming and Scripting |
|
|
|
2 |
87,637 |
Shell Programming and Scripting |
|
|
|
3 |
10,065 |
AIX |
|
|
|
3 |
18,963 |
Linux |
|
|
|
0 |
2,117 |
Cartoons for Geeks |
|
|
|
9 |
12,774 |
Shell Programming and Scripting |
|
|
|
0 |
1,264 |
Complex Event Processing RSS News |
|
|
|
1 |
3,202 |
Shell Programming and Scripting |
|
|
|
2 |
4,991 |
Shell Programming and Scripting |
|
|
|
7 |
3,847 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,931 |
Shell Programming and Scripting |
|
|
|
0 |
2,787 |
Oracle Updates (RSS) |
|
|
|
0 |
4,709 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,229 |
Shell Programming and Scripting |
|
|
|
1 |
1,879 |
Shell Programming and Scripting |
|
|
|
2 |
2,100 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,426 |
Shell Programming and Scripting |
|
|
|
14 |
4,542 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,874 |
Shell Programming and Scripting |
|
|
|
0 |
5,960 |
Programming |
|
|
|
2 |
9,878 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
25,091 |
Shell Programming and Scripting |
|
|
|
6 |
3,439 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,199 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,979 |
Programming |
|
|
|
4 |
2,127 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,060 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,280 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,662 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,165 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,571 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
38,293 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,355 |
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)