mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
26 lines
572 B
C++
26 lines
572 B
C++
#include <AK/StdLibExtras.h>
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
static volatile bool got_alarm = false;
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
UNUSED_PARAM(argc);
|
|
UNUSED_PARAM(argv);
|
|
|
|
unsigned ret = alarm(5);
|
|
printf("alarm() with no alarm set: %u\n", ret);
|
|
ret = alarm(2);
|
|
printf("alarm() with an alarm(5) set: %u\n", ret);
|
|
|
|
signal(SIGALRM, [](int) {
|
|
got_alarm = true;
|
|
});
|
|
printf("Entering infinite loop.\n");
|
|
while (!got_alarm) {
|
|
}
|
|
printf("Oh, we got the alarm. Exiting :)\n");
|
|
return 0;
|
|
}
|