2

GDB トレースポイントを試していますが、データを取得できません。次のように gdbserver を起動します。

$ gdbserver :1234 ./a.out 
Process ./a.out created; pid = 13610
Listening on port 1234

次に、クライアントで次のコマンドを使用します。

$ gdb ./a.out
...
Reading symbols from /home/simark/src/test/a.out...done.
(gdb) target remote :1234
Remote debugging using :1234
Reading symbols from /lib64/ld-linux-x86-64.so.2...done.
Reading symbols from /usr/lib/debug/lib/x86_64-linux-gnu/ld-2.15.so...done.
Loaded symbols for /lib64/ld-linux-x86-64.so.2
0x00007ffff7ddb6c0 in _start () from /lib64/ld-linux-x86-64.so.2
(gdb) l
1   #include <stdio.h>
2   int foo(int a, int b) {
3       return a + b + b;
4   }
5   
6   int main() {
7       int n = foo(33, 4);
8       printf("%d\n", n);
9       return 0;
10  }
(gdb) trace 3
Tracepoint 1 at 0x400526: file test.c, line 3.
(gdb) b 9
Breakpoint 2 at 0x400563: file test.c, line 9.
(gdb) actions 1
Enter actions for tracepoint 1, one per line.
End with a line saying just "end".
>collect $regs,$args
>end
(gdb) tstart
(gdb) c
Continuing.

Breakpoint 2, main () at test.c:9
9       return 0;
(gdb) tstop
(gdb) tdump
warning: No current trace frame.
(gdb)

Web で見た例によると、制御がトレースポイントを通過したため、イベントが 1 つあるはずです。データが得られない理由はありますか?

4

1 に答える 1

1

Web で見た例によると、制御がトレースポイントを通過したため、イベントが 1 つあるはずです。

tfind startする前にするのを忘れていtdumpました。からhelp tdump:

Print everything collected at the current tracepoint.

しかし、どのトレースポイントでも停止していません。ブレークポイント 2 で停止しています。

tfind start、トレース バッファ内の最初のトレース フレームを選択します。

于 2013-05-02T22:51:16.660 に答える