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.
libowfat/io/iob_addbuf_munmap.c

12 lines
259 B
C

#include <sys/types.h>
#include <sys/mman.h>
#include "iob_internal.h"
static void cleanup(struct iob_entry* x) {
munmap((char*)x->buf,x->n);
}
int iob_addbuf_munmap(io_batch* b,const void* buf,uint64 n) {
return iob_addbuf_internal(b,buf,n,cleanup);
}