Page 1 of 1

Interactive process handling!

Posted: Mon Jan 14, 2002 12:00 am
by Anuraag
Hi ppl,

My friends and I need some suggestions with a certain aspect of our project.
Suppose, we have a local process running on a remote terminal,
i.e. the process has been migrated to the remote terminal,
how can we make sure that all interactive statements for input-output
should be redirected back to the original terminal where the
processes originated. Basically, how do we carry out process migration
for interactive processes...

Thanx,
Anuraag;)

Re: Interactive process handling!

Posted: Wed Aug 01, 2007 4:28 am
by AndrewAPrice
Anuraag wrote:Basically, how do we carry out process migration
for interactive processes...
I would freeze the state of a process, page it on to disk, then send the pages across the network, and page it into memory on the new machine. You would probably want an event system which prepares the process for transfering (so it's not in the middle of disk writing or something). For the input/output, you might think about keeping a network byte stream between the host computer and the origional?

Posted: Wed Aug 01, 2007 4:43 am
by urxae
This thread is > 5.5 years old... :roll:

Posted: Wed Aug 01, 2007 5:20 am
by hailstorm
That shows us how eager we are in helping eachother... :mrgreen:

Posted: Mon Aug 06, 2007 10:09 pm
by dc0d32
after paging it out to disk, what about the streams it has opened or waiting on? How can we replicate that?