विभाजन त्रुटि रनटाइम त्रुटि में से एक है, जो मेमोरी एक्सेस उल्लंघन के कारण होती है, जैसे अमान्य सरणी अनुक्रमणिका तक पहुंचना, कुछ प्रतिबंधित पते को इंगित करना आदि। इस लेख में, हम देखेंगे कि GDB टूल का उपयोग करके इस प्रकार की त्रुटि का पता कैसे लगाया जाए। ।
आइए त्रुटि का पता लगाने के लिए कोड और संबंधित चरणों को देखें।
उदाहरण
#include <stdio.h> main() { int* ptr = NULL; *ptr = 1; //trying to access unknown memory location printf("%p\n", ptr); }
'gcc -g program_name.c' का उपयोग करके कोड संकलित करें, और './a.out' का उपयोग करके चलाएं
आउटपुट
soumyadeep@soumyadeep-VirtualBox:~/Cpp_progs$ ./a.out Segmentation fault (core dumped)
विभाजन त्रुटि हुई।
'gdb ./a.out core' लिखें
soumyadeep@soumyadeep-VirtualBox:~/Cpp_progs$ gdb ./a.out core GNU gdb (Ubuntu 8.1-0ubuntu3) 8.1.0.20180409-git Copyright (C) 2018 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: <https://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <https://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from ./a.out...done. /home/soumyadeep/Cpp_progs/core: No such file or directory. (gdb)
'r' टाइप करें और एंटर दबाएं।
Starting program: /home/soumyadeep/Cpp_progs/a.out Program received signal SIGSEGV, Segmentation fault. 0x000055555555465e in main () at 1230.find_seg_error.c:5 5 *ptr = 1; //trying to access unknown memory location (gdb)
इसलिए हमें त्रुटि सफलतापूर्वक मिल गई है, अब GDB से बाहर निकलें
(gdb) quit A debugging session is active. Inferior 1 [process 2794] will be killed. Quit anyway? (y or n) y