Unix and Linux Discussions Tagged with times |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
14,009 |
What is on Your Mind? |
|
|
|
0 |
18,633 |
Web Development |
|
|
|
5 |
1,517 |
Shell Programming and Scripting |
|
|
|
5 |
1,096 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
361 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,935 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
621 |
What is on Your Mind? |
|
|
|
3 |
1,710 |
Shell Programming and Scripting |
|
|
|
2 |
83,256 |
Shell Programming and Scripting |
|
|
|
3 |
7,498 |
AIX |
|
|
|
3 |
18,404 |
Linux |
|
|
|
0 |
1,979 |
Cartoons for Geeks |
|
|
|
9 |
11,773 |
Shell Programming and Scripting |
|
|
|
0 |
1,121 |
Complex Event Processing RSS News |
|
|
|
1 |
2,962 |
Shell Programming and Scripting |
|
|
|
2 |
4,679 |
Shell Programming and Scripting |
|
|
|
7 |
3,529 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,772 |
Shell Programming and Scripting |
|
|
|
0 |
2,715 |
Oracle Updates (RSS) |
|
|
|
0 |
4,475 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,998 |
Shell Programming and Scripting |
|
|
|
1 |
1,715 |
Shell Programming and Scripting |
|
|
|
2 |
1,918 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
5,213 |
Shell Programming and Scripting |
|
|
|
14 |
3,837 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,710 |
Shell Programming and Scripting |
|
|
|
0 |
5,193 |
Programming |
|
|
|
2 |
9,523 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
16,827 |
Shell Programming and Scripting |
|
|
|
6 |
3,159 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,997 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
3,760 |
Programming |
|
|
|
4 |
1,923 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,690 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,988 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
5,024 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,855 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,262 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
36,176 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,002 |
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)