> I want to chroot an application I'm developing, but I still want 
> coredumps...
> 
>     _dump.c_
>     #include <stdlib.h>
>     int main() {
>         abort();
>     }
> 
> 
>     # gcc dump.c -o dump  
>     # ./dump
>     Abort trap (core dumped)
>     # chroot ./ ./dump
>     Abort trap                        [note that no core was dumped!]

At the moment there is no solution for this.  Coredumps cannot happen
in those processes.

Reply via email to