Sir,<br>we are working on suspend and resume support for lguest.<br>We are using CryoPID as a basic tool.<br><br>Our approach is to suspend all the processes active in user space of lguest using one of the existing methods of process check pointing with a few modifications namely ,cryopid which we are now able to do.
<br>kill the guest, then spawn a new guest&nbsp; and resume the suspended processes <br>using the core file which is actually a self extracting ELF.<br><br>Using this approach, we were able to resume a process <br>but did not get the corresponding messages on the console which are basically simple printfs.
<br>The process which we used as an example was supposed to write data into a file and then print the same data.<br>But result what we are getting is not as expected, resumed process writes data into file but its not printed on console.
<br><br>Another way is to follow classical approach of suspending the lguest processes  from Host although no existing process check pointing directly supports it...we have tried quite a few.. :-P<br><br>Could you please suggest us any approach for the same.....
<br>