diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/bin/e_sys_main.c | 3 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,6 @@ | |||
1 | 2013-11-05 Tom Hacohen | ||
2 | * wsod: Fixed gdb hangs when generating backtraces. | ||
3 | |||
1 | 2013-10-07 Mike Blumenkrantz | 4 | 2013-10-07 Mike Blumenkrantz |
2 | 5 | ||
3 | * removed "raise on focus" config option | 6 | * removed "raise on focus" config option |
@@ -234,3 +234,4 @@ Fixes: | |||
234 | * fixed bug where new files could not be created repeatedly | 234 | * fixed bug where new files could not be created repeatedly |
235 | * fixed filemanager spring window closing when dragging from desktop | 235 | * fixed filemanager spring window closing when dragging from desktop |
236 | * fixed catching XWindow closes during DND operations on those windows | 236 | * fixed catching XWindow closes during DND operations on those windows |
237 | * wsod: Fixed gdb hangs when generating backtraces. | ||
diff --git a/src/bin/e_sys_main.c b/src/bin/e_sys_main.c index b48f1c08b..edbb70da4 100644 --- a/src/bin/e_sys_main.c +++ b/src/bin/e_sys_main.c | |||
@@ -168,10 +168,11 @@ main(int argc, | |||
168 | 168 | ||
169 | snprintf(buffer, 4096, | 169 | snprintf(buffer, 4096, |
170 | "%s --pid=%i " | 170 | "%s --pid=%i " |
171 | "-batch " | ||
171 | "-ex 'set logging file %s' " | 172 | "-ex 'set logging file %s' " |
172 | "-ex 'set logging on' " | 173 | "-ex 'set logging on' " |
173 | "-ex 'thread apply all backtrace full' " | 174 | "-ex 'thread apply all backtrace full' " |
174 | "-ex detach -ex quit > /dev/null 2> /dev/null", | 175 | "-ex detach &> /dev/null < /dev/zero", |
175 | cmd, | 176 | cmd, |
176 | pid, | 177 | pid, |
177 | output ?: "e-output.txt"); | 178 | output ?: "e-output.txt"); |