blob: 019deea4180a6f34008d27d8b23ca7625a25a79d [file] [log] [blame]
Colin Cross7add50d2016-01-14 15:35:40 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef LIBMEMUNREACHABLE_SCOPED_ALARM_H_
18#define LIBMEMUNREACHABLE_SCOPED_ALARM_H_
19
20#include <signal.h>
21
22#include <chrono>
23#include <functional>
24
25class ScopedAlarm {
26 public:
27 ScopedAlarm(std::chrono::microseconds us, std::function<void()> func) {
28 func_ = func;
29 struct sigaction oldact{};
30 struct sigaction act{};
31 act.sa_handler = [](int) {
32 ScopedAlarm::func_();
33 };
34 sigaction(SIGALRM, &act, &oldact);
35
36 std::chrono::seconds s = std::chrono::duration_cast<std::chrono::seconds>(us);
37 itimerval t = itimerval{};
38 t.it_value.tv_sec = s.count();
39 t.it_value.tv_usec = (us - s).count();
40 setitimer(ITIMER_REAL, &t, NULL);
41 }
42 ~ScopedAlarm() {
43 itimerval t = itimerval{};
44 setitimer(ITIMER_REAL, &t, NULL);
45 struct sigaction act{};
46 act.sa_handler = SIG_DFL;
47 sigaction(SIGALRM, &act, NULL);
48 }
49 private:
50 static std::function<void()> func_;
51};
52#endif