summaryrefslogtreecommitdiff
path: root/procfs.h
blob: 28ef784b0c8ffd5000e12f076535928067348798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CORE_PROCFS_H
#define CORE_PROCFS_H

#include <stdlib.h>
#include <stddef.h>
#include <sys/types.h>
#include <sys/mman.h>

#ifndef PAGE_SIZE
#define PAGE_SIZE (4096)
#endif

int procfs_open(pid_t pid);
int read_page(int fd, uintptr_t index, uint8_t *data);

struct procfs_map {
	uintptr_t base;
	uintptr_t max;
	int prot;
};

ssize_t procfs_maps(pid_t pid, struct procfs_map **maps);

#endif