Contrary to popular opinion and appearances - Thread aborts can abort finally blocks in .net 1.1 !! This is actually documented in msdn! so code like
can fail to release the lock in case of thread abort leaving an orphaned SyncBlk. You can expect the rest of the app worker threads to slowly hit this region and hang.
lock(this)
{
blah...
}
What makes this even more interesting is that web services extensions (wse) merrily abort threads on timeouts :)
2 comments:
Why does all this sound completely alien to me?
Dude, you are no longer a techie. You are a financial mogul :)!
Post a Comment