repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
ansi
/
clock.c
blob
049d512594675b79e062ce6a77dde2e698c8110a
1
/*
2
* clock - determine the processor time used
3
*/
4
5
#define times _times
6
#include <time.h>
7
#include <sys/times.h>
8
9
clock_t
clock
(
void
)
10
{
11
struct
tms tms
;
12
13
times
(&
tms
);
14
return
tms
.
tms_utime
;
15
}