Bug ID 25123
Summary process detach kills the process (e.g. php)
Product lldb
Version 3.7
Hardware All
OS All
Status NEW
Severity normal
Priority P
Component All Bugs
Assignee lldb-dev@lists.llvm.org
Reporter kenorb@gmail.com
CC llvm-bugs@lists.llvm.org
Classification Unclassified
Here is reproducible test:
Run:
php -r "sleep(1000);"
In another terminal, run:
echo process detach | lldb -p $(pgrep -fn php)
Sometimes it kills it after 2nd run. This doesn't happens in gdb, e.g.: echo
detach | gdb -p $(pgrep -fn php)