mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
38 lines
522 B
C++
38 lines
522 B
C++
// processinfo.h
|
|
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef _WIN32
|
|
#include <unistd.h>
|
|
#else
|
|
typedef int pid_t;
|
|
int getpid();
|
|
#endif
|
|
|
|
namespace mongo {
|
|
|
|
class ProcessInfo {
|
|
public:
|
|
ProcessInfo( pid_t pid = getpid() );
|
|
~ProcessInfo();
|
|
|
|
/**
|
|
* @return mbytes
|
|
*/
|
|
int getVirtualMemorySize();
|
|
|
|
/**
|
|
* @return mbytes
|
|
*/
|
|
int getResidentSize();
|
|
|
|
bool supported();
|
|
|
|
private:
|
|
pid_t _pid;
|
|
};
|
|
|
|
}
|