Skip to content

Commit

Permalink
Revert "Merge branch 'develop'"
Browse files Browse the repository at this point in the history
This reverts commit 373b629, reversing
changes made to f3fb7f0.
  • Loading branch information
davazp committed Dec 21, 2011
1 parent 373b629 commit e1c4167
Show file tree
Hide file tree
Showing 6 changed files with 98 additions and 750 deletions.
14 changes: 1 addition & 13 deletions .gdbinit
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
file eulex
target remote localhost:1234
display /i $pc
python
import struct
with open("eulex.core", "rb") as f:
header = False
while not header:
value, = struct.unpack("i", f.read(4))
header = (value == 0x1BADB002)
f.read(24) # discard other fields
ep, = struct.unpack("i", f.read(4))
bp = gdb.Breakpoint("*" + hex(ep))
bp.enabled = True
end

Loading

0 comments on commit e1c4167

Please sign in to comment.