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
409 B
C

24 years ago
#include <sys/types.h>
#include <unistd.h>
#include <sys/mman.h>
#include "open.h"
#include "mmap.h"
extern char* mmap_shared(const char* filename,unsigned long* filesize) {
24 years ago
int fd=open_read(filename);
char *map;
if (fd>=0) {
*filesize=lseek(fd,0,SEEK_END);
map=mmap(0,*filesize,PROT_WRITE,MAP_SHARED,fd,0);
if (map==(char*)-1)
map=0;
close(fd);
return map;
}
return 0;
}