aboutsummaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/util/rusage.h
blob: 07b0c5814bcbcfb8f33fb6ff2fb8ddbaf5708677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/string.h>
#include <vespa/fastos/timestamp.h>
#include <sys/resource.h>

namespace vespalib {

class RUsage : private rusage {
public:
    /**
     * Create an rusage with all member set to zero.
     **/
    RUsage();
    /**
     * Will create an RUsage and initialize member with RUSAGE_SELF
     **/
    static RUsage createSelf();
    static RUsage createSelf(const fastos::TimeStamp & since);
    /**
     * Will create an RUsage and initialize member with RUSAGE_CHILDREN
     **/
    static RUsage createChildren();
    static RUsage createChildren(const fastos::TimeStamp & since);
    /**
     * Will create an RUsage and initialize member with RUSAGE_CHILDREN
     **/
    vespalib::string toString();
    RUsage & operator -= (const RUsage & rhs);
private:
    fastos::TimeStamp _time;
};

RUsage operator -(const RUsage & a, const RUsage & b);
timeval operator -(const timeval & a, const timeval & b);

}