Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 591377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:37:42+00:00 2026-05-13T15:37:42+00:00

I’ve been reading Joe Duffy’s book on Concurrent programming. I have kind of an

  • 0

I’ve been reading Joe Duffy’s book on Concurrent programming. I have kind of an academic question about lockless threading.

First: I know that lockless threading is fraught with peril (if you don’t believe me, read the sections in the book about memory model)

Nevertheless, I have a question:
suppose I have an class with an int property on it.

The value referenced by this property will be read very frequently by multiple threads

It is extremely rare that the value will change, and when it does it will be a single thread that changes it.

If it does change while another operation that uses it is in flight, no one is going to lose a finger (the first thing anyone using it does is copy it to a local variable)

I could use locks (or a readerwriterlockslim to keep the reads concurrent).
I could mark the variable volatile (lots of examples where this is done)

However, even volatile can impose a performance hit.

What if I use VolatileWrite when it changes, and leave the access normal for reads. Something like this:

public class MyClass
{
  private int _TheProperty;
  internal int TheProperty
  {
    get { return _TheProperty; }
    set { System.Threading.Thread.VolatileWrite(ref _TheProperty, value); }
  }
}

I don’t think that I would ever try this in real life, but I’m curious about the answer (more than anything, as a checkpoint of whether I understand the memory model stuff I’ve been reading).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T15:37:42+00:00Added an answer on May 13, 2026 at 3:37 pm

    Marking a variable as “volatile” has two effects.

    1) Reads and writes have acquire and release semantics, so that reads and writes of other memory locations will not “move forwards and backwards in time” with respect to reads and writes of this memory location. (This is a simplification, but you take my point.)

    2) The code generated by the jitter will not “cache” a value that seems to logically be unchanging.

    Whether the former point is relevant in your scenario, I don’t know; you’ve only described one memory location. Whether or not it is important that you have only volatile writes but not volatile reads is something that is up to you to decide.

    But it seems to me that the latter point is quite relevant. If you have a spin lock on a non-volatile variable:

    while(this.prop == 0) {}
    

    the jitter is within its rights to generate this code as though you’d written

    if (this.prop == 0) { while (true) {} }
    

    Whether it actually does so or not, I don’t know, but it has the right to. If what you want is for the code to actually re-check the property on each go round the loop, marking it as volatile is the right way to go.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am reading a book about Javascript and jQuery and using one of the
I don't have much knowledge about the IPv6 protocol, so sorry if the question
I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
This could be a duplicate question, but I have no idea what search terms
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.