14 lines
172 B
C
14 lines
172 B
C
#pragma once
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
|
|
struct mmap_params
|
|
{
|
|
void* addr;
|
|
size_t len;
|
|
int prot;
|
|
int flags;
|
|
int fd;
|
|
off_t offset;
|
|
};
|