Skip to content

Instantly share code, notes, and snippets.

@Houdini
Houdini / gdb-trace.py
Created December 10, 2015 01:15 — forked from quark-zju/gdb-trace.py
Trace all function calls using gdb
#!/usr/bin/env python
try:
import gdb
inside_gdb = True
except ImportError:
inside_gdb = False
if inside_gdb: