mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
668 B
31 lines
668 B
#include "iob_internal.h" |
|
#include <stdio.h> |
|
#include <sys/mman.h> |
|
|
|
void iob_prefetch(io_batch* b,uint64 bytes) { |
|
volatile char x; |
|
iob_entry* e,* last; |
|
if (b->bytesleft==0) return; |
|
last=(iob_entry*)(((char*)array_start(&b->b))+array_bytes(&b->b)); |
|
e=(iob_entry*)array_start(&b->b); |
|
if (!e) return; |
|
for (; e<last; ++e) { |
|
if (e->type==FROMFILE) { |
|
char* c,* d; |
|
uint64 before=bytes; |
|
if (e->n>=1000000) { |
|
d=c=mmap(0,bytes+4095,PROT_READ,MAP_SHARED,e->fd,(e->offset|4095)+1); |
|
if (c!=MAP_FAILED) { |
|
while (bytes>4096) { |
|
x=*d; |
|
bytes-=4096; |
|
d+=4096; |
|
} |
|
} |
|
munmap(c,before); |
|
} |
|
return; |
|
} |
|
} |
|
(void)x; |
|
}
|
|
|