vote up 2 vote down star

The following code

using System.Threading;

class Test
{
    volatile int counter = 0;
    public void Increment()
    {
    	Interlocked.Increment(ref counter);
    }
}

Raises the following compiler warning:

"A reference to a volatile field will not be treated as volatile"

Am I doing something wrong here to raise this warning? Why does the compiler me warn about this?

flag

4 Answers

vote up 3 vote down check

You are not doing anything wrong. According to the documentation:

A volatile field should not normally be passed using a ref or out parameter, since it will not be treated as volatile within the scope of the function. There are exceptions to this, such as when calling an interlocked API.

link|flag
1  
I'd say that the Interlocked methods still aren't treating it any differently to how they'd treat any other field - it's just that all fields are handled in a special way by Interlocked. – Jon Skeet Jan 8 at 17:32
vote up 4 vote down

Basically the warning is that when you pass a volatile field by reference, the calling code doesn't know to treat it in a volatile manner. For Interlocked.Increment that probably doesn't matter, due to the nature of the method - but then you don't need the variable to be volatile anyway if you're using Interlocked.

In general, I think I'd avoid mixing the two - if you're using Interlocked, do it everywhere (using Interlocked.CompareExchange(ref counter, 0, 0) to read it). I can't say I use volatile very often, personally. For simple counters I might use Interlocked, but I'm more likely to use a lock for most tasks.

link|flag
You are getting me confused. In a previous question (395232) I understood from your answer that I needed both Interlocked and volatile. Now you say "you don't need the variable to be volatile anyway if you're using Interlocked." – Jader Dias Jan 8 at 17:33
No, they're alternatives to each other: "Or preferably use Interlocked, a volatile variable, or a lock." That was meant to give three different approaches, not a combined one. Was that the part which was misleading you? – Jon Skeet Jan 8 at 17:52
I understand that in a multiprocessor enviroment, multiple caches can make one processor increment one cached value that isn't the last value. In that case, as far as I know, a Interlocked won't help, cause it does not creates the MemoryBarrier that is needed to refresh the caches. – Jader Dias Jan 9 at 2:25
One question, do you visit every question you answered to check if anyone has commented, or you have some sort of RSS that alerts you? – Jader Dias Jan 9 at 2:26
I read the "Responses" tab of my user page. – Jon Skeet Jan 9 at 6:33
show 2 more comments
vote up 1 vote down

You're getting the error because you're passing the field by reference. I think what this means is that the target method has no idea the field is marked as volatile, and therefore will not treat it as such.

HTH, Kent

link|flag
vote up -1 vote down

Use this:

        #pragma warning disable 420
        //                       M
        //                      dM
        //                      MMr
        //                     4MMML                  .
        //                     MMMMM.                xf
        //     .              "MMMMM               .MM-
        //      Mh..          +MMMMMM            .MMMM
        //      .MMM.         .MMMMML.          MMMMMh
        //       )MMMh.        MMMMMM         MMMMMMM
        //        3MMMMx.     'MMMMMMf      xnMMMMMM"
        //        '*MMMMM      MMMMMM.     nMMMMMMP"
        //          *MMMMMx    "MMMMM\    .MMMMMMM=
        //           *MMMMMh   "MMMMM"   JMMMMMMP
        //             MMMMMM   3MMMM.  dMMMMMM            .
        //              MMMMMM  "MMMM  .MMMMM(        .nnMP"
        //  =..          *MMMMx  MMM"  dMMMM"    .nnMMMMM*
        //    "MMn...     'MMMMr 'MM   MMM"   .nMMMMMMM*"
        //     "4MMMMnn..   *MMM  MM  MMP"  .dMMMMMMM""
        //       ^MMMMMMMMx.  *ML "M .M*  .MMMMMM**"
        //          *PMMMMMMhn. *x > M  .MMMM**""
        //             ""**MMMMhx/.h/ .=*"
        //                      .3P"%....
        //                    nP"     "*MMnx
        if(Interlocked.CompareExchange(ref isLoaded, 1, 0) != 0)
            return;
        #pragma warning restore 420
link|flag
nice ascii artwork, but it doesn't answers the question – Jader Dias Oct 3 at 0:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.