संक्षेप में:
sigaction()
अच्छा और अच्छी तरह से परिभाषित है, लेकिन एक लिनक्स फ़ंक्शन है और इसलिए यह केवल लिनक्स पर काम करता है। signal()
खराब और खराब-परिभाषित है, लेकिन एक सी मानक कार्य है और इसलिए यह किसी भी चीज पर काम करता है।
इसके बारे में लिनक्स मैन पेजों का क्या कहना है?
man 2 signal
(इसे यहां ऑनलाइन देखें ) में कहा गया है:
संकेत का व्यवहार () UNIX संस्करणों में भिन्न होता है, और लिनक्स के विभिन्न संस्करणों में ऐतिहासिक रूप से भिन्न होता है। इसके उपयोग से बचें: sigaction(2)
इसके बजाय उपयोग करें । नीचे पोर्टेबिलिटी देखें।
पोर्टेबिलिटी सिग्नल का केवल पोर्टेबल उपयोग () SIG_DFL या SIG_IGN को सिग्नल के स्वभाव को सेट करना है। सिग्नल हैंडलर स्थापित करने के लिए सिग्नल () का उपयोग करते समय शब्दार्थ पूरे सिस्टम में भिन्न होता है (और POSIX.1 स्पष्ट रूप से इस भिन्नता को अनुमति देता है); इस उद्देश्य के लिए इसका उपयोग न करें।
दूसरे शब्दों में: उपयोग न करें signal()
। sigaction()
इसके बजाय का उपयोग करें !
जीसीसी क्या सोचता है?
संगतता नोट: जैसा कि ऊपर कहा गया है signal
, इस फ़ंक्शन को संभव होने पर टाला जाना चाहिए। sigaction
पसंदीदा तरीका है।
स्रोत: https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
इसलिए, यदि लिनक्स और जीसीसी दोनों का उपयोग नहीं करने के लिए कहा जाता है signal()
, लेकिन sigaction()
इसके बजाय इसका उपयोग करने के लिए, यह सवाल उठता है: हम इस भ्रामक sigaction()
चीज का उपयोग कैसे करते हैं !?
उपयोग के उदाहरण:
जीसीसी के उत्कृष्ट signal()
उदाहरण यहां पढ़ें : https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
और उनके उत्कृष्ट sigaction()
उदाहरण यहाँ: https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
उन पृष्ठों को पढ़ने के बाद, मैं निम्नलिखित तकनीक लेकर आया sigaction()
:
1. sigaction()
, चूंकि यह एक संकेत हैंडलर संलग्न करने का सही तरीका है, जैसा कि ऊपर वर्णित है:
#include <errno.h> // errno
#include <signal.h> // sigaction()
#include <stdio.h> // printf()
#include <string.h> // strerror()
#define LOG_LOCATION __FILE__, __LINE__, __func__ // Format: const char *, unsigned int, const char *
#define LOG_FORMAT_STR "file: %s, line: %u, func: %s: "
/// @brief Callback function to handle termination signals, such as Ctrl + C
/// @param[in] signal Signal number of the signal being handled by this callback function
/// @return None
static void termination_handler(const int signal)
{
switch (signal)
{
case SIGINT:
printf("\nSIGINT (%i) (Ctrl + C) signal caught.\n", signal);
break;
case SIGTERM:
printf("\nSIGTERM (%i) (default `kill` or `killall`) signal caught.\n", signal);
break;
case SIGHUP:
printf("\nSIGHUP (%i) (\"hang-up\") signal caught.\n", signal);
break;
default:
printf("\nUnk signal (%i) caught.\n", signal);
break;
}
// DO PROGRAM CLEANUP HERE, such as freeing memory, closing files, etc.
exit(signal);
}
/// @brief Set a new signal handler action for a given signal
/// @details Only update the signals with our custom handler if they are NOT set to "signal ignore" (`SIG_IGN`),
/// which means they are currently intentionally ignored. GCC recommends this "because non-job-control
/// shells often ignore certain signals when starting children, and it is important for children
/// to respect this." See
/// https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
/// and https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html.
/// Note that termination signals can be found here:
/// https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html#Termination-Signals
/// @param[in] signal Signal to set to this action
/// @param[in] action Pointer to sigaction struct, including the callback function inside it, to attach to this signal
/// @return None
static inline void set_sigaction(int signal, const struct sigaction *action)
{
struct sigaction old_action;
// check current signal handler action to see if it's set to SIGNAL IGNORE
sigaction(signal, NULL, &old_action);
if (old_action.sa_handler != SIG_IGN)
{
// set new signal handler action to what we want
int ret_code = sigaction(signal, action, NULL);
if (ret_code == -1)
{
printf(LOG_FORMAT_STR "sigaction failed when setting signal to %i;\n"
" errno = %i: %s\n", LOG_LOCATION, signal, errno, strerror(errno));
}
}
}
int main(int argc, char *argv[])
{
//...
// Register callbacks to handle kill signals; prefer the Linux function `sigaction()` over the C function
// `signal()`: "It is better to use sigaction if it is available since the results are much more reliable."
// Source: https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
// and /programming/231912/what-is-the-difference-between-sigaction-and-signal/232711#232711.
// See here for official gcc `sigaction()` demo, which this code is modeled after:
// https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
// Set up the structure to specify the new action, per GCC's demo.
struct sigaction new_action;
new_action.sa_handler = termination_handler; // set callback function
sigemptyset(&new_action.sa_mask);
new_action.sa_flags = 0;
// SIGINT: ie: Ctrl + C kill signal
set_sigaction(SIGINT, &new_action);
// SIGTERM: termination signal--the default generated by `kill` and `killall`
set_sigaction(SIGTERM, &new_action);
// SIGHUP: "hang-up" signal due to lost connection
set_sigaction(SIGHUP, &new_action);
//...
}
2. और signal()
, भले ही इसके लिए सिग्नल हैंडलर संलग्न करने का एक अच्छा तरीका नहीं है, जैसा कि ऊपर वर्णित है, यह जानना अभी भी अच्छा है कि इसका उपयोग कैसे किया जाए।
यहां GCC प्रदर्शन कोड कॉपी-पेस्ट किया गया है, क्योंकि यह जितना अच्छा है उतना ही अच्छा है:
#include <signal.h>
void
termination_handler (int signum)
{
struct temp_file *p;
for (p = temp_file_list; p; p = p->next)
unlink (p->name);
}
int
main (void)
{
…
if (signal (SIGINT, termination_handler) == SIG_IGN)
signal (SIGINT, SIG_IGN);
if (signal (SIGHUP, termination_handler) == SIG_IGN)
signal (SIGHUP, SIG_IGN);
if (signal (SIGTERM, termination_handler) == SIG_IGN)
signal (SIGTERM, SIG_IGN);
…
}
के बारे में पता करने के लिए मुख्य लिंक:
- मानक संकेत: https://www.gnu.org/software/libc/manual/html_node/Standard-Signals.html#Standard-Signals
- समाप्ति संकेत: https://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html#Termination-Signals
- मूल सिग्नल हैंडलिंग, आधिकारिक GCC
signal()
उपयोग उदाहरण सहित : https://www.gnu.org/software/libc/manual/html_node/Basic-Signal-Handling.html#Basic-Signal-Handling
- आधिकारिक जीसीसी
sigaction()
उपयोग उदाहरण: https://www.gnu.org/software/libc/manual/html_node/Sigaction-Function-Example.html
- सिग्नल सेट, सहित
sigemptyset()
और sigfillset()
; मुझे अभी भी ये ठीक से समझ नहीं आया है, लेकिन जानते हैं कि वे महत्वपूर्ण हैं: https://www.gnu.org/software/libc/manual/html_node/Signal-Sets.html
यह सभी देखें:
- TutorialsPoint C ++ सिग्नल हैंडलिंग [उत्कृष्ट डेमो कोड के साथ]: https://www.tutorialspoint.com/cplusplus/cpp_signal_handling.htm
- https://www.tutorialspoint.com/c_standard_library/signal_h.htm
signal
वास्तव में यूनिक्स सिस्टम V व्यवहार का है। POSIX या तो इस व्यवहार या बहुत अधिक बीएसएनडी व्यवहार की अनुमति देता है, लेकिन चूंकि आप यह सुनिश्चित नहीं कर सकते कि आपको कौन सा मिलेगा, यह अभी भी उपयोग करना सबसे अच्छा हैsigaction
।