aboutsummaryrefslogblamecommitdiffstats
path: root/util/system/rusage.h
blob: 61aeca83f254acf52d30be444a0123250fae2a56 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
            
 
                     






                                             
                    
                             


                    
 
                                  




                          
#pragma once

#include "defaults.h"
#include <util/generic/utility.h>
#include <util/datetime/base.h>

/// portable getrusage

struct TRusage {
    // some fields may be zero if unsupported

    ui64 MaxRss = 0;
    ui64 MajorPageFaults = 0;
    TDuration Utime;
    TDuration Stime;

    void Fill();

    static size_t GetCurrentRSS();

    static TRusage Get() {
        TRusage r;
        r.Fill();
        return r;
    }
};