Sha256: ba8997d53a78c7032421305f176fdedafad361859bef396f4aaeca48aab287ca

Contents?: true

Size: 897 Bytes

Versions: 45

Compression:

Stored size: 897 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

# 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

45 entries across 45 versions & 1 rubygems

Version Path
passenger-4.0.48 test/gdbinit.example
passenger-4.0.46 test/gdbinit.example
passenger-4.0.45 test/gdbinit.example
passenger-4.0.44 test/gdbinit.example
passenger-4.0.43 test/gdbinit.example
passenger-4.0.42 test/gdbinit.example
passenger-4.0.41 test/gdbinit.example
passenger-4.0.40 test/gdbinit.example
passenger-4.0.39 test/gdbinit.example
passenger-4.0.38 test/gdbinit.example
passenger-4.0.37 test/gdbinit.example
passenger-4.0.36 test/gdbinit.example
passenger-4.0.35 test/gdbinit.example
passenger-4.0.34 test/gdbinit.example
passenger-4.0.33 test/gdbinit.example
passenger-4.0.32 test/gdbinit.example
passenger-4.0.31 test/gdbinit.example
passenger-4.0.30 test/gdbinit.example
passenger-4.0.29 test/gdbinit.example
passenger-4.0.28 test/gdbinit.example