Skip to content

Instantly share code, notes, and snippets.

@abyrd
abyrd / memmap_experiment_1.c
Created August 11, 2009 16:14
Proof of concept for mmapping Graph structures
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <unistd.h>
#include <string.h>