Today I found a very interesting paper from Colin Stebbins Gordon, Joe Duffy and several people from MSR Cambridge
Colin was a team member of TSI.
Microsoft: Technical Strategy Incubation - Intern, Program analysis work (Summer 2011)
Microsoft: Technical Strategy Incubation - Full Time, Kernel developer on an unannounced systems project. Worked on kernel debugger implementation, interrupt handling, post-mortem debugging, platform abstractions, all work interacting with other subsystems. (August 2008 - September 2009)
The paper is: Uniqueness and Reference Immutability for Safe Parallelism
http://www.cs.washington.edu/homes/csgordon/papers/oopsla12.pdf
Abstract: A key challenge for concurrent programming is that side-effects (memory operations) in one thread can affect the behavior of another thread. In this paper, we present a type system to restrict the updates to memory to prevent these unintended side-effects. We provide a novel combination of immutable and unique (isolated) types that ensures safe parallelism (race freedom and deterministic execution). The type system includes support for polymorphism over type qualifiers, and can easily create cycles of immutable objects. Key to the system's flexibility is the ability to recover immutable or externally unique references after violating uniqueness without any explicit alias tracking. Our type system models a prototype extension to C\# that is in active use by a Microsoft team. We describe their experiences building large systems with this extension. We prove the soundness of the type system by an embedding into a program logic.
Add your 2¢