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.
|
#include <sys/types.h>
|
|
#include "mmap.h"
|
|
#include "iob_internal.h"
|
|
|
|
static void cleanup(struct iob_entry* x) {
|
|
mmap_unmap((char*)x->buf,x->offset+x->n);
|
|
}
|
|
|
|
int iob_addbuf_munmap(io_batch* b,const void* buf,uint64 n) {
|
|
return iob_addbuf_internal(b,buf,n,cleanup);
|
|
}
|