1

私は次のコードを持っています:

#include <stdlib.h>
#include <stdio.h>

#define SIZE 100

int* arr;

main()
{
    int i;

    arr = (int*)malloc(SIZE*sizeof(int));

    if (arr == NULL) {
        printf("Could not allocate SIZE(=%d)", SIZE);
    }

    for (i=0; i<SIZE; i++) {
        arr[i] = 0;
    }

    free(arr);
}

arr[10]その配列要素がいつ変更されるかを監視して確認する必要はありません。

これどうやってするの?gdbは次のように言っています:

$ gcc -g main.c
$ gdb a.out
...
(gdb) watch arr[10]
Cannot access memory at address 0x28

無効なメモリを監視し、有効になったときにのみ停止するようにgdbに指示する方法はありますか?

PS:gdbバージョン6.0、6.3、6.4、6.6、6.8、7.0、7.1があります

ありがとう

4

2 に答える 2

0

mallocでメモリが割り当てられた後に時計を設定します。

(gdb) b main
Breakpoint 1 at 0x401321: file w.c, line 9.
(gdb) run
Starting program: D:\Users\NeilB/a.exe
[New thread 432.0x53c]

Breakpoint 1, main () at w.c:9
9       {
(gdb)
(gdb) n
12          arr = (int*)malloc(SIZE*sizeof(int));
(gdb) n
14          if (arr == NULL) {
(gdb) watch arr[10]
Hardware watchpoint 2: arr[10]
于 2010-07-02T15:07:57.030 に答える
0

何らかの理由で、私はgdb-6.3を使用していました(これは私のPATHにあり、気づいていませんでした)。しかし、gdb-7.1で試したところ、うまくいきました。

gdb 7.0以降、現時点では自分のものではないメモリを監視できます。

次のソースコードを使用します。

#include <stdlib.h>
#include <stdio.h>

#define SIZE 100

int* arr;

main()
{
    int i;

    arr = (int*)malloc(SIZE*sizeof(int));

    if (arr == NULL) {
        printf("Could not allocate SIZE(=%d)", SIZE);
    }

    for (i=0; i<SIZE; i++) {
        arr[i] = i; /* So it changes from malloc */
    }

    free(arr);
}

次のコマンドでコンパイルできます。

$ gcc -g -o debug main.c

そして、次のようにデバッグします。

$ gdb debug
GNU gdb (GDB) 7.1
...
(gdb) watch arr[10]
Watchpoint 1: arr[10]
(gdb) run
Starting program: /remote/cats/gastonj/sandbox/debug/debug
Hardware watchpoint 1: arr[10]

Old value = <unreadable>
New value = 0
main () at main.c:14
14          if (arr == NULL) {
(gdb) cont
Continuing.
Hardware watchpoint 1: arr[10]

Old value = 0
New value = 10
main () at main.c:18
18          for (i=0; i<SIZE; i++) {
(gdb) cont
Continuing.

Program exited with code 01.
(gdb)

それが他の誰かに役立つことを願っています。

注:これをNeilの投稿にコメントとして追加しようとしましたが、フォーマットされていないため、質問に対する回答を書くことを好みました。

于 2010-07-08T15:49:14.050 に答える