Example explanation of alarm function in Linux

Example explanation of alarm function in Linux

Introduction to Linux alarm function

Above code:

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
int main(int argc, char *argv[]) 
{ 
 alarm(5);
 sleep(20); 
 printf("end!\n"); 
 return 0; 
}

After running for 5 seconds, the kernel sends a SIGALRM message to the process and the process is terminated. So the result of the above program is:

Alarm clock

Of course, we can also manually define the signal processing function as follows:

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>
void sig_alarm(int sig) 
{ 
 printf("sig is %d, sig_alarm is called\n", sig);
}
int main(int argc, char *argv[]) 
{ 
 signal(SIGALRM, sig_alarm); // Register the function corresponding to the alarm signal alarm(5); // After 5 seconds, the kernel sends an alarm signal to the process and executes the corresponding signal registration function sleep(20); 
 printf("end!\n"); 
 return 0; 
}

result:

sig is 14, sig_alarm is called
end!

It can be seen that the kernel sends a SIGALRM signal to the application process and executes the corresponding registration function instead of killing the process.

It’s very simple, that’s all I have to say for now.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • PHP executes 6 Linux command function code examples
  • Detailed explanation of the use of stat function and stat command in Linux
  • How to get the current time using time(NULL) function and localtime() in Linux
  • How to add a timeout to a Python function on Linux/Mac
  • Linux unlink function and how to delete files
  • Detailed explanation of the use of Linux lseek function
  • A brief analysis of the function calling process under the ARM architecture

<<:  Configuring MySQL and Squel Pro on Mac

>>:  vue.config.js packaging optimization configuration

Recommend

7 cool dynamic website designs for inspiration

In the field of design, there are different desig...

Deploy Confluence with Docker

1. Environmental requirements 1. Docker 17 and ab...

Learn how to use the supervisor watchdog in 3 minutes

Software and hardware environment centos7.6.1810 ...

Detailed tutorial on installing MariaDB on CentOS 8

MariaDB database management system is a branch of...

How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux

1. Log in to MySQL and use SHOW VARIABLES LIKE &#...

Implementing a table scrolling carousel effect through CSS animation

An application of CSS animation, with the same co...

How to implement logic reuse with Vue3 composition API

Composition API implements logic reuse steps: Ext...

Example of how to achieve ceiling effect using WeChat applet

Table of contents 1. Implementation 2. Problems 3...

Syntax alias problem based on delete in mysql

Table of contents MySQL delete syntax alias probl...

Implementation of MySQL Shell import_table data import

Table of contents 1. Introduction to import_table...

Complete steps for uninstalling MySQL database

The process of completely uninstalling the MySQL ...