repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 6.02~pre7+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
include
/
sys
/
times.h
blob
5eda295496d3d85a7a4d47ec8f3c355d75f67d49
1
/*
2
* sys/times.h
3
*/
4
5
#ifndef _SYS_TIMES_H
6
#define _SYS_TIMES_H
7
8
#include <stdint.h>
9
10
struct
tms
{
11
/* Empty */
12
};
13
14
#define HZ 1000
15
#define CLK_TCK HZ
16
17
typedef
uint32_t clock_t
;
18
19
extern volatile
uint32_t
__ms_timer
;
20
21
static
inline
clock_t
times
(
struct
tms
*
buf
)
22
{
23
(
void
)
buf
;
24
return
__ms_timer
;
25
}
26
27
#endif
/* _SYS_TIMES_H */