You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
411 B
C
20 lines
411 B
C
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <sys/mman.h>
|
|
#include "open.h"
|
|
#include "mmap.h"
|
|
|
|
extern char* mmap_private(const char* filename,unsigned long* filesize) {
|
|
int fd=open_read(filename);
|
|
char *map;
|
|
if (fd>=0) {
|
|
*filesize=lseek(fd,0,SEEK_END);
|
|
map=mmap(0,*filesize,PROT_WRITE,MAP_PRIVATE,fd,0);
|
|
if (map==(char*)-1)
|
|
map=0;
|
|
close(fd);
|
|
return map;
|
|
}
|
|
return 0;
|
|
}
|