Created
December 2, 2008 17:24
-
-
Save jacqui/31186 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
the end of the strace started by the following command, then hitting the server: | |
$ strace rackup -D -E development -p 8910 -s mongrel config.ru | |
$ wget http://localhost:8910 | |
## strace output tail end | |
select(4, [3], [], [], {0, 0}) = 0 (Timeout) | |
select(4, [3], [], [], {0, 0}) = 0 (Timeout) | |
open("/home/app/seci/integrity.db", O_RDWR|O_CREAT, 0644) = 5 | |
fstat(5, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 | |
lseek(5, 0, SEEK_SET) = 0 | |
read(5, "", 100) = 0 | |
brk(0xd7d7000) = 0xd7d7000 | |
brk(0xd7d3000) = 0xd7d3000 | |
--- SIGSEGV (Segmentation fault) @ 0 (0) --- | |
--- SIGSEGV (Segmentation fault) @ 0 (0) --- | |
+++ killed by SIGSEGV +++ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment