Moving a process from one computer to another while it is running..
- From: "Albert Goodwill" <albertgoodwill@xxxxxxxxx>
- Date: 20 Feb 2007 05:33:38 -0800
Hi,
Is there a way to move a running process from one computer to another
and resume the execution from where the original process was
intrrupted?
int main(...)
{
for (int i=0; i<very large number; i++){
cout << i << "," << endl;
solve rocket science equations
if (i==3) // SomeCondition happened and we decided to move from
Computer-A to Computer-B
MoveTo("192.168.1.123"); //Move this process to another
computer and continue to run on that computer
}
return 0;
}
Computer-A
1,2,3,
Computer-B
4,5,6,7,8, ....
.
- Follow-Ups:
- Re: Moving a process from one computer to another while it is running..
- From: Martin Hierholzer
- Re: Moving a process from one computer to another while it is running..
- From: jasen
- Re: Moving a process from one computer to another while it is running..
- From: John Reiser
- Re: Moving a process from one computer to another while it is running..
- From: Pascal Bourguignon
- Re: Moving a process from one computer to another while it is running..
- Prev by Date: Re: Asterisk:
- Next by Date: Re: How to log resources utilized by single program in Linux?
- Previous by thread: to change mouse cursor to arrow sign on console mode?
- Next by thread: Re: Moving a process from one computer to another while it is running..
- Index(es):
Relevant Pages
|