Sha256: c63a1232adf37d3107a80f0783125f17e842a5d766922d1cc8bba3cf73babd98

Contents?: true

Size: 964 Bytes

Versions: 20

Compression:

Stored size: 964 Bytes

Contents

# This is a sample .gdbinit file that can aid you in debugging
# Phusion Passenger with GDB. Modify it to your liking and copy
# it to test/.gdbinit. See also CONTRIBUTING.md.

# Ignore some signals.
handle SIGUSR1 noprint pass
handle SIGPIPE noprint pass

# Use Intel syntax for disassembles.
set disassembly-flavor intel

# Convenience command.
define rake
	shell rake $arg0
end

# Break on breakpoint() function.
break Passenger::breakpoint

# Linux-only. Comment out when not on Linux.
set print thread-events off

# On OS X, you may sometimes want to enable memory debugger libraries.
#set env DYLD_INSERT_LIBRARIES /usr/lib/libgmalloc.dylib
#set env MALLOC_FILL_SPACE YES
#set env MALLOC_PROTECT_BEFORE YES
#set env MallocStackLogging YES
#set env MallocGuardEdges YES
#set env MallocScribble YES
#set env MallocPreScribble YES
#set env MallocCheckHeapStart 10
#set env MallocCheckHeapEach 1
#set env MallocCheckHeapAbort YES
#set env MallocBadFreeAbort YES

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
passenger-4.0.60 test/gdbinit.example
passenger-5.0.4 test/gdbinit.example
passenger-5.0.3 test/gdbinit.example
passenger-5.0.2 test/gdbinit.example
passenger-5.0.1 test/gdbinit.example
passenger-5.0.0.rc2 test/gdbinit.example
passenger-5.0.0.rc1 test/gdbinit.example
passenger-4.0.59 test/gdbinit.example
passenger-5.0.0.beta3 test/gdbinit.example
passenger-4.0.58 test/gdbinit.example
passenger-4.0.57 test/gdbinit.example
passenger-5.0.0.beta2 test/gdbinit.example
passenger-4.0.56 test/gdbinit.example
passenger-4.0.55 test/gdbinit.example
passenger-5.0.0.beta1 test/gdbinit.example
passenger-4.0.53 test/gdbinit.example
passenger-4.0.52 test/gdbinit.example
passenger-4.0.51 test/gdbinit.example
passenger-4.0.50 test/gdbinit.example
passenger-4.0.49 test/gdbinit.example