![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <time.h>
int main() {
int i;
time_t time1, time2;
for(i = 0; i < 10; i++) {
time(&time1);
do
{
time(&time2);
} while( (time2 - time1) < 1);
printf("%i ", i);
if(i == 9) {
printf("\n");
}
}
return (1);
}
fflush(stdout);
QuoteDas glaube ich nicht. fcntl agiert auf Kernel-Ebene, Puffern passiert aber auf libc-Ebene.
1
2
3
4
5
6
O_DIRECT Minimize or eliminate the cache effects of reading and writ-
ing. The system will attempt to avoid caching the data you
read or write. If it cannot avoid caching the data, it will
minimize the impact the data has on the cache. Use of this
flag can drastically reduce performance if not used with
care.
![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |