ポイントが指定された回数に達した後にのみGDBブレークポイントを壊すにはどうすればよいですか?


85

何度も呼び出され、最終的にはセグメンテーション違反が発生する関数があります。

ただし、私は何年もここにいるので、この関数にブレークポイントを設定して、呼び出されるたびに停止したくありません。

counterGDBでブレークポイントにを設定できると聞きました。ブレークポイントに到達するたびに、カウンターがデクリメントされ、counter= 0の場合にのみトリガーされます。

これは正確ですか?もしそうなら、どうすればよいですか?このようなブレークポイントを設定するためのgdbコードを指定してください。


回答:


162

GDBマニュアルのセクション5.1.6をお読みください。あなたがしなければならないことは、最初にブレークポイントを設定し、次にそのブレークポイント番号に「無視カウント」を設定することです。ignore 23 1000です。

ブレークポイントを無視する回数がわからず、手動でカウントしたくない場合は、次のことが役立つ場合があります。

  ignore 23 1000000   # set ignore count very high.

  run                 # the program will SIGSEGV before reaching the ignore count.
                      # Once it stops with SIGSEGV:

  info break 23       # tells you how many times the breakpoint has been hit, 
                      # which is exactly the count you want

13

continue <n>

これは、最後のヒットブレークポイントをスキップする便利な方法です n - 1時間(したがって、n番目のヒットで停止。

main.c

#include <stdio.h>

int main(void) {
    int i = 0;
    while (1) {
        i++; /* Line 6 */
        printf("%d\n", i);
    }
}

使用法:

gdb -n -q main.out

GDBセッション:

Reading symbols from main.out...done.
(gdb) start
Temporary breakpoint 1 at 0x6a8: file main.c, line 4.
Starting program: /home/ciro/bak/git/cpp-cheat/gdb/main.out

Temporary breakpoint 1, main () at main.c:4
4           int i = 0;
(gdb) b 6
Breakpoint 2 at 0x5555555546af: file main.c, line 6.
(gdb) c
Continuing.

Breakpoint 2, main () at main.c:6
6               i++; /* Line 6 */
(gdb) c 5
Will ignore next 4 crossings of breakpoint 2.  Continuing.
1
2
3
4
5

Breakpoint 2, main () at main.c:6
6               i++; /* Line 6 */
(gdb) p i
$1 = 5
(gdb)
(gdb) help c
Continue program being debugged, after signal or breakpoint.
Usage: continue [N]
If proceeding from breakpoint, a number N may be used as an argument,
which means to set the ignore count of that breakpoint to N - 1 (so that
the breakpoint won't break until the Nth time it is reached).
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.