Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
800 views
in Technique[技术] by (71.8m points)

.net - Does CLR internally spawns a thread to respond to timer events?

Hans and I had small discussion recently about the subject and I'm curious how it is really implemented.

See initial talking in the comments here: Are c# timers naturally multithreaded?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Staring at the .Net 4.0 reference source, System.Timers.Timer seems to use a System.Threading.Timer to handle the actual implementation details. The latter generates timers by calling AddTimerNative. AddTimerNative is an internal call.

Googling AddTimerNative lead to a lot of interesting results, including Willy Denoyette's comment, where he states that it calls CreateTimerQueueTimer.

That page states that "Callback functions are queued to the thread pool. "


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...