Explore >> Select a destination


You are here

www.mikeash.com
| | www.2ality.com
5.5 parsecs away

Travel
| | The ECMAScript proposal "Shared memory and atomics" by Lars T. Hansen has reached stage 4 this week and will be part of ECMAScript 2017. It introduces a new constructor SharedArrayBuffer and a namespace object Atomics with helper functions. This blog post explains the details.
| | www.playembedded.org
5.5 parsecs away

Travel
| | In this article, we will explain what race conditions are and provide examples to help you understand their impact on multi-threading applications. We will also introduce a powerful tool to prevent race conditions: the mutex. We will explain what a
| | loonytek.com
5.0 parsecs away

Travel
| | In this post, I will talk about usage of volatile fields in Java and how volatile is different from synchronized. Both volatile and synchronized are used in multi-threaded programs to get some degree of thread safety depending on the operations performed by different threads. Consider the following piece of code class VolatileDemo { private int...
| | www.fluentcpp.com
32.5 parsecs away

Travel
| Variadic templates allow any number of template parameters of any type. In this article we see how to do a variadic number of parameters of the SAME type.