DotNetShoutout - Stories tagged with Multithreading
4
Shouts

MSDN Magazine: Task-Based Programming - Scalable Multithreaded Programming with Tasks

published 930 days, 13 hours, 4 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 931 days, 23 hours, 45 minutes ago
Thursday, November 04, 2010 10:17:02 PM GMT Wednesday, November 03, 2010 11:35:49 AM GMT
Getting the most out of multicore systems means diving head-first into multithreaded programming. Ron Fosner follows up on his previous article by introducing you to a more sophisticated multithreading technique called task-based programming. (more)
category: How To | clicked: 11 | comment | | source: msdn.microsoft.com
tags: Multithreading, MSDN, MSDN Magazine
2
Shouts

Writing a Semi-Local Object Pool

published 970 days, 3 hours, 5 minutes ago posted by http://liranc.myopenid.com/http://liranc.myopenid.com/ 971 days, 20 hours, 51 minutes ago
Sunday, September 26, 2010 8:16:25 AM GMT Friday, September 24, 2010 2:29:51 PM GMT
Learn how to write more scalable object pools while minimizing your application's memory footprint. (more)
category: Architecture | clicked: 2 | comment | | source: blog.liranchen.com
tags: Multithreading, C#, Performance
3
Shouts

Multithreading: Which lock object should i use?

published 989 days, 21 hours, 15 minutes ago posted by http://baldi.myopenid.com/http://baldi.myopenid.com/ 990 days, 5 hours, 51 minutes ago
Monday, September 06, 2010 2:06:01 PM GMT Monday, September 06, 2010 5:29:47 AM GMT
The lock keyword locks a specified code block so two threads can't process the same code block at the same time. When one threads exits the locked block, another thread can enter the locked code block. The Monitor class offers the same functionality, but you specifiy the start and end of the locked code block with Monitor.Enter and Monitor.Exit. For both techniques you need a variable to lock on, but what sort of variable should you use? (more)
category: How To | clicked: 0 | comment | | source: www.mbaldinger.com
tags: .NET, Multithreading
9
Shouts

VS 2010 Debugger Improvements (BreakPoints, DataTips, Import/Export) - ScottGu's Blog

published 1126 days, 12 minutes ago posted by mithumithu 1127 days, 10 hours, 40 minutes ago
Friday, April 23, 2010 11:09:19 AM GMT Thursday, April 22, 2010 12:41:11 AM GMT
This is the twenty-first in a series of blog posts I’m doing on the VS 2010 and .NET 4 release.  Today’s blog post covers a few of the nice usability improvements coming with the VS 2010 debugger.  The VS 2010 debugger has a ton of great new capabilities.  Features like Intellitrace (aka historical debugging), the new parallel/multithreaded debugging capabilities, and dump debuging support typically get a ton of (well deserved) buzz and attention when people talk about the debugging improvements with t... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .net 4, Multithreading, IntelliTrace, Debugging, VS 2010, ScottGu