SLIDE 1
Advanced ¡Breakpointing ¡
Software ¡Breakpoints ¡
INT ¡3 ¡
Memory ¡Breakpoints ¡
Page ¡guarding ¡
Hardware ¡Breakpoints ¡
CPU ¡hardware ¡
2
Advanced Breakpointing Software Breakpoints INT 3 Memory - - PowerPoint PPT Presentation
Advanced Breakpointing Software Breakpoints INT 3 Memory Breakpoints Page guarding Hardware Breakpoints CPU hardware 2 Software Breakpoints
2
3
4
5
6
7
8
9
10
11
class A { public: virtual void func() {cout << “A”;} }; class B: public A { public: void func() {cout << “B”;} }; B *b = new B(); b->func();
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35