9

Python で ctypes.cdll.LoadLibrary() によってロードされる共有ライブラリにある c/c++ コードをデバッグしようとしています。その後、特定の関数が Python から呼び出されます。Python コードは子プロセスをフォークするため、c 関数が Python の親プロセスから呼び出されたのか子プロセスから呼び出されたのかを区別できる必要があります。非常に単純な例: test.c

// j = clib.call1(i)
int call1(int i)
{
    return i*2;
}

test.py

import os, sys, ctypes
path = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), "test.so"))
clib = ctypes.cdll.LoadLibrary(path)
i = 20
j = clib.call1(i)
print "i=%d j=%d\n" %(i, j)


$ gcc -g -O0 test.c -shared -o test.so
$ gdb --args python-dbg test.py
(gdb) break test.c call1
Function "test.c call1" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (test.c call1) pending.
(gdb) info breakpoints
Num     Type           Disp Enb Address    What
1       breakpoint     keep y   <PENDING>  test.c call1
(gdb) run
Starting program: /usr/bin/python-dbg test.py
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
i=20 j=40

[23744 refs]
[Inferior 1 (process 44079) exited normally]

私の端末ログから、Python がライブラリをロードするときに gdb がブレークポイントを認識していないことがわかります。私のアプリケーションでも同じ動作が見られます。

4

1 に答える 1

6

call1代わりに中断する

(gdb) break call1

これもうまくいくはずです

(gdb) break test.c:call1
于 2012-11-30T21:35:53.570 に答える