Re: I want to write a Daemon Thread
Posted By:
Simon_Ablett
Posted On:
Tuesday, April 23, 2002 09:05 AM
A daemon thread and a daemon process are not the same thing. A daemon thread is one that does not have to terminate for the controlling process to finish. A daemon process, known as a service in WinNT, is one that's usually (not always!!) run at operating system startup.
It sounds like you are actually after a daemon process and how you start them is operating system dependant.
Regards.