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
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:
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:
|
<<: Configuring MySQL and Squel Pro on Mac
>>: vue.config.js packaging optimization configuration
In the field of design, there are different desig...
1. There are two ways to modify global variables ...
The domestic market still has a certain demand fo...
The JavaScript hasOwnProperty() method is the pro...
1. Environmental requirements 1. Docker 17 and ab...
Software and hardware environment centos7.6.1810 ...
In order to prevent non-compliant data from enter...
MariaDB database management system is a branch of...
1. Log in to MySQL and use SHOW VARIABLES LIKE ...
An application of CSS animation, with the same co...
Composition API implements logic reuse steps: Ext...
Table of contents 1. Implementation 2. Problems 3...
Table of contents MySQL delete syntax alias probl...
Table of contents 1. Introduction to import_table...
The process of completely uninstalling the MySQL ...