RTL8710AF_GCC/tools/arm-none-eabi-gcc/gcc-arm-none-eabi-4_8-2014q1/arm-none-eabi/include/sys/times.h
ant 923914edae motify arm-none-eabi-gcc
motify arm-none-eabi-gcc
2016-09-14 21:10:35 +08:00

31 lines
619 B
C

#ifndef _SYS_TIMES_H
#ifdef __cplusplus
extern "C" {
#endif
#define _SYS_TIMES_H
#include <_ansi.h>
#include <machine/types.h>
#ifndef __clock_t_defined
typedef _CLOCK_T_ clock_t;
#define __clock_t_defined
#endif
/* Get Process Times, P1003.1b-1993, p. 92 */
struct tms {
clock_t tms_utime; /* user time */
clock_t tms_stime; /* system time */
clock_t tms_cutime; /* user time, children */
clock_t tms_cstime; /* system time, children */
};
clock_t _EXFUN(times,(struct tms *));
#ifdef _COMPILING_NEWLIB
clock_t _EXFUN(_times,(struct tms *));
#endif
#ifdef __cplusplus
}
#endif
#endif /* !_SYS_TIMES_H */