blob: bf8eb9dc0756653add2948cf8300fd5ac18d1bf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ISC license. */
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <skalibs/cdb.h>
int cdb_init_map (struct cdb *c, int fd, int domap)
{
if (domap)
{
struct stat st ;
char *map ;
if (fstat(fd, &st) < 0) return 0 ;
map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0) ;
if (map == MAP_FAILED) return 0 ;
c->fd = -fd-2 ;
c->map = map ;
c->size = st.st_size ;
}
else c->fd = fd ;
return 1 ;
}
|