ATLAS Offline Software
Classes | Functions
procmaps.h File Reference
#include <vector>
#include <string>
#include <sys/types.h>
Include dependency graph for procmaps.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  procmaps
 A simple API to access /proc/self/maps info. More...
 
struct  procmaps::Entry
 

Functions

bool operator< (procmaps::Entry &lhs, procmaps::Entry &rhs)
 

Function Documentation

◆ operator<()

bool operator< ( procmaps::Entry lhs,
procmaps::Entry rhs 
)
inline

Definition at line 57 of file procmaps.h.

57  {
58  return lhs.begAddress < rhs.begAddress;
59 }
procmaps::Entry::begAddress
unsigned long begAddress
Definition: procmaps.h:22