Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is garbage collector a daemon (background) thread?

Thanks.

share|improve this question
i think it must be implemented as a native thread – Suraj Chandran Mar 7 '11 at 11:04
@sean....thanx..for correction... – bunty Mar 7 '11 at 11:04
1  
@Suraj Chandran: No, a garbage collector doesn't need to live in a separate thread at all. In fact, it's quite complicated to do it that way (although it has some advantages like no interruption of the program like normal "stop-the-world" collectors do). – DarkDust Mar 7 '11 at 11:07
Related? stackoverflow.com/questions/2213340/… – Buhake Sindi Mar 7 '11 at 11:12
@DarkDust, actually nowadays the GC and the JIT are run in background high-priority threads. GC in background threads have way too many benefits to pass by. – bestsss Mar 8 '11 at 22:34
show 2 more comments

2 Answers

up vote 2 down vote accepted

I will assume yes, Garbage collector thread is a daemon thread. Daemon thread is a low priority thread which runs intermittently in the back ground doing the garbage collection operation or other requests for the java runtime system.

share|improve this answer
The GC threads are HIGH priority ones. – bestsss Mar 8 '11 at 22:33
From Java Concurrency In Practice by Goetz et al: "When the JVM starts up, all the threads it creates (such as garbage collector and other housekeeping threads) are daemon threads, except the main thread." – John O Jun 23 '11 at 21:25
A daemon thread is simply a thread that does not force the JVM to keep running. i.e. There are two types of threads: non-deamon threads, and daemon threads. Non-deamon threads perform your important work, and daemon threads perform housekeeping. When all non-deamon threads finish running, the JVM shuts down and kills all daemon threads automatically. That's what you wanted when you created the daemon thread, right? Just some housekeeping task that's meant to support the non-daemon threads. – Ken Bloom Aug 23 '11 at 16:56

It's not a thread from a java.lang.Thread perspective at least.

share|improve this answer
what you mean by it's not from java.lang.Thread ? user space multitask or native implementation. – Suresh Sankar Mar 7 '11 at 11:22
I mean it's not a thread that you can see and manage in Java unlike other ordinary (includes daemon) threads which are merely instances of java.lang.Thread. So, I have indirectly implied that it's a native implementation abstracted from the user. – adarshr Mar 7 '11 at 11:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.