G
Guest
Hi. I was just wondering if you can fork a process in .NET like you would in C
Thank
Jenna
Thank
Jenna
JennaS said:Hi. I was just wondering if you can fork a process in .NET like you would in C.
Miha Markic said:Hi,
As Jon said, and afaik windows doesn't have fork feature - instead you
should use threads.
--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com
wouldJennaS said:Hi. I was just wondering if you can fork a process in .NET like you
in C.Thanks
Jenna
Tom Dacon said:Forgive me for going off on a tangent with this post here, but I'm just
wondering...
I've done a fair bit of Unix programming in my long and checkered past, and
I've used fork() once in a while. I've done multitasking in mainframe and
micro operating systems, even written OS task schedulers, and used threads
in MS programming, particularly in .Net where they're almost trivially easy.
Is there anyone besides me that thinks that the fork business in Unix, both
from the conceptual viewpoint and the implementation viewpoint, is truly
bizarre?
Just asking...inquiring minds want to know.
this question I think "Why would you want it???".
Tom Dacon said:Well, there are certainly times that you want to create and start a child
process. For instance, a TCP/IP server listens on a port for an incoming
request, and might spawn a child process to handle each session. That way
multiple sessions can be underway, and nobody has to wait for some other
session's transaction to finish (other than the inevitable fact that the
session processes are probably sharing a physical CPU).
Tom Dacon said:Well, there are certainly times that you want to create and start a child
process. For instance, a TCP/IP server listens on a port for an incoming
request, and might spawn a child process to handle each session. That way
multiple sessions can be underway, and nobody has to wait for some other
session's transaction to finish (other than the inevitable fact that the
session processes are probably sharing a physical CPU).
It could be that fork is designed more for parallelism, rather than worker
style. In that case, having the state immediately available (rather than
having to store it out into state variables prior to jumping to the thread
start) makes some sort of sense: