forked from PacktPublishing/C-Programming-for-Linux-Systems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposix-alarm.cpp
33 lines (30 loc) · 917 Bytes
/
posix-alarm.cpp
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
#include <iostream>
#include <csignal>
#include <unistd.h>
#include <sys/time.h>
#include <atomic>
static std::atomic_bool continue_execution{true};
int main() {
struct sigaction sa{};
sa.sa_handler = [](int signum) {
// Timer triggered, stop the loop.
std::cout << "Timer expired. Stopping the task...\n";
continue_execution = false;
};
sigemptyset(&sa.sa_mask);
sa.sa_flags = 0;
sigaction(SIGALRM, &sa, nullptr);
// Configure the timer to trigger every 1 seconds
struct itimerval timer{
.it_interval{.tv_sec{1}, .tv_usec{0}},
.it_value{.tv_sec{1}, .tv_usec{0}}
};
// Start the timer
setitimer(ITIMER_REAL, &timer, nullptr);
std::cout << "Timer started. Waiting for timer expiration...\n";
// Keep the program running to allow the timer to trigger
while (continue_execution) {
sleep(1);
}
return 0;
}