blob: 7b81a1339b749180f9afd7e9e1a1b9418a4a467d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CORE_PROCFS_H
#define CORE_PROCFS_H
#include <stdlib.h>
#include <stddef.h>
#include <sys/types.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);
#endif
|