Created
July 9, 2015 22:11
-
-
Save shichao-an/d8ae24d49244509b0cba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct tms { | |
| clock_t tms_utime; /* user CPU time */ | |
| clock_t tms_stime; /* system CPU time */ | |
| clock_t tms_cutime; /* user CPU time, terminated children */ | |
| clock_t tms_cstime; /* system CPU time, terminated children */ | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment