aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/sig_catch.h
blob: 83cf7b5a70e80cfe6bea93db782192d8e6e55a9b (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib {

/**
 * @brief Use this class for simple common-case signal handling.
 **/

class SigCatch
{
public:
    /**
     * Constructor installs signal handlers.
     **/
    SigCatch();

    /**
     * Check if a signal to stop has been received.
     **/
    bool receivedStopSignal();
};

} // namespace vespalib