VirtualBox

source: kBuild/trunk/src/ash/win/sys/times.h@ 819

Last change on this file since 819 was 819, checked in by bird, 18 years ago

More svn:eol-style fixes.

  • Property svn:eol-style set to native
File size: 398 bytes
Line 
1#ifndef __sys_times_h__
2#define __sys_times_h__
3#include <time.h>
4
5struct tms
6{
7 clock_t tms_utime; /**< User mode CPU time. */
8 clock_t tms_stime; /**< Kernel mode CPU time. */
9 clock_t tms_cutime; /**< User mode CPU time for waited for children. */
10 clock_t tms_cstime; /**< Kernel mode CPU time for waited for children. */
11};
12
13clock_t times(struct tms *);
14
15#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette