Displaying 1 result from an estimated 1 matches for "cped".
Did you mean:
ced
2011 Mar 11
1
setpgid() before exec'ing qemu
...:
#0 0x00000036fe80ef1e in waitpid () from /lib64/libpthread.so.0
#1 0x0000003629c0df7f in guestfs_close () from /usr/lib64/libguestfs.so.0
then a mess of python stuff
If I attach to it with strace it shows:
wait4(0,
It looks like libguestfs's children are already dead
pstree 13107
python???cped???3*[{cped}]
??qpidd???9*[{qpidd}]
so it's seems like it's waiting on my process to die.
So I changed the oz code to call close (in python "del obj") and all is well,
however I was looking in libquestfs code and saw:
#if 0
/* Set up a new process group, so we can sign...