blob: 2a1ffb349d671c0893594690a266bc9d378553d0 (
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 <skalibs/bsdsnowflake.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <stdint.h>
#include <errno.h>
#include <skalibs/cdb.h>
int cdb_init (struct cdb *c, int fd)
{
struct stat st ;
char *map ;
if (fstat(fd, &st) < 0) return -1 ;
if (st.st_size > UINT32_MAX) return (errno = EOVERFLOW, -1) ;
map = mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, -1) ;
if (map == MAP_FAILED) return -1 ;
c->map = map ;
c->size = st.st_size ;
return 0 ;
}
|