Skip to content

Harmos274/libprocmaps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lib Procmaps

Parsing library for the /proc/<PID>/maps pseudofile.

Installation

1. Makefile

$> git clone https://github.com/Harmos274/libprocmaps
$> cd libprocmaps
$> mkdir build && cd build && cmake ..
$> sudo make install

2. Copying

...or just copy include/procmaps.h and src/parse_procmaps.c into your project repository!

Documentation

hr_procmaps **contruct_procmaps(int pid);

Parse /proc/<PID>/maps to create an object hr_procmaps containing information on the maps of the process PID. The pid argument is the PID of the process to get the maps of. If it is set to 0 or a negative value, the function will parse /proc/self/maps instead, fetching information about itself.

void destroy_procmaps(hr_procmaps **procmaps);

Destroy the hr_procmaps object freeing the allocated memory.

Example :

#include <stdio.h>
#include <procmaps.h>

int main(void)
{
	hr_procmaps **procmaps = construct_procmaps(0);
	
	printf("0x%0llx", procmaps[0]->addr_begin);
	destroy_procmaps(procmaps);
	return 0;
}

Refer to the wiki for additional details.

Enjoy !

About

Parsing library for /proc/<pid>/maps pseudofile.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published