Sign in
|
Join
|
Help
Peter Ritchie's MVP Blog
This is not a life-saving device.
This Blog
Home
Contact
Tags
.NET 2.0
.NET 3.5
.NET 4.0
.NET 4.5
.NET Development
AntiPattern
C#
C# 3.0
Design/Coding Guidance
DevCenterPost
DevTeach
General
Interesting Find
Microsoft
Non-development
OOD
Patterns
Pontification
Resharper
Software Development
Software Development Guidance
Software Development Practices
Visual Studio 2005
Visual Studio 2008
Visual Studio 2010
Syndication
RSS for Posts
Atom
RSS for Comments
Go
News
Follow @peterritchie
Search
Go
Email Notifications
Go
Archives
March 2013 (3)
February 2013 (1)
January 2013 (2)
November 2012 (4)
September 2012 (4)
August 2012 (1)
May 2012 (1)
April 2012 (1)
February 2012 (3)
January 2012 (3)
December 2011 (1)
November 2011 (5)
October 2011 (2)
September 2011 (2)
August 2011 (1)
July 2011 (1)
June 2011 (1)
May 2011 (3)
April 2011 (1)
March 2011 (2)
February 2011 (1)
December 2010 (4)
November 2010 (2)
October 2010 (2)
August 2010 (1)
June 2010 (2)
May 2010 (4)
April 2010 (6)
March 2010 (1)
February 2010 (6)
December 2009 (1)
August 2009 (1)
July 2009 (1)
May 2009 (1)
April 2009 (1)
March 2009 (3)
January 2009 (3)
November 2008 (6)
October 2008 (2)
September 2008 (2)
August 2008 (8)
July 2008 (8)
June 2008 (5)
May 2008 (8)
April 2008 (1)
March 2008 (4)
February 2008 (6)
January 2008 (4)
December 2007 (4)
November 2007 (1)
October 2007 (4)
September 2007 (2)
August 2007 (3)
July 2007 (2)
June 2007 (4)
May 2007 (5)
April 2007 (2)
March 2007 (4)
February 2007 (3)
January 2007 (1)
November 2006 (2)
October 2006 (5)
September 2006 (6)
August 2006 (2)
July 2006 (7)
March 2006 (2)
Nuggets
.NET 2.0 Breaking Changes
Visual Studio and .NET Framework Feedback
Microsoft Developer Network Forums
Interesting Blogs
Visual Studio Code Analysis Blog
Sara Ford's Blog
Me
Technorati Profile
Browse by Tags
All Tags
»
Software Development Guidance
»
Multithreaded
(
RSS
)
.NET 4.5
.NET Development
C#
Concurrency
Design/Coding Guidance
DevCenterPost
Software Development
Visual Studio
Visual Studio 2012
Tue, Sep 11 2012 14:04
Thread synchronization of non-atomic invariants in .NET 4.5
Now that we’ve seen how a singular x86-x64 focus might affect how we can synchronize atomic invariants , let’s look at non-atomic invariants. While an atomic invariant really doesn’t need much in the way of guarding , non-atomic invariants often do. ...
Posted by
PeterRitchie
|
2 comment(s)
Filed under:
C#
,
.NET Development
,
Design/Coding Guidance
,
DevCenterPost
,
Software Development Guidance
,
Multithreaded
,
.NET 4.5
,
Concurrency
,
Visual Studio 2012
Mon, Sep 10 2012 14:26
Thread synchronization of atomic invariants in .NET 4.5 clarifications
In Thread synchronization of atomic invariants in .NET 4.5 I’m presenting my observations of what the compiler does in very narrow context of only on Intel x86 and Intel x64 with a particular version of .NET. You can install SDKs that give you access...
Posted by
PeterRitchie
|
4 comment(s)
Filed under:
.NET Development
,
DevCenterPost
,
Software Development Guidance
,
Multithreaded
,
.NET 4.5
,
Concurrency
Sun, Sep 9 2012 11:52
Thread synchronization of atomic invariants in .NET 4.5
I've written before about multi-threaded programming in .NET (C#). Spinning up threads and executing code on another thread isn't really the hard part. The hard part is synchronization of data between threads. Most of what I've written about...
Posted by
PeterRitchie
|
4 comment(s)
Filed under:
C#
,
.NET Development
,
DevCenterPost
,
Software Development Guidance
,
Multithreaded
,
.NET 4.5
,
Concurrency
Wed, Jan 25 2012 15:52
Avoid the volatile Modifier
[Update: 25-Jan-12 5:45 pm; fixed typo] I was reminded recently of the misconceptions of the volatile modifier in C#, and I’d thought I’d pass along the recommendations of other’s that is tantamount to “avoid the volatile modifier”...
Posted by
PeterRitchie
| with
no comments
Filed under:
C#
,
.NET Development
,
Software Development
,
Software Development Guidance
,
Visual Studio
,
Multithreaded