(related to this question Is It Safe to Cast Away volatile?, but not quite the same, as that question relates to a specific instance)
Is there ever a case where casting away volatile is not considered a dangerous practice?
(one particular example: if there is a function declared
void foo(long *pl);
and I have to implement
void bar(volatile long *pl);
with part of my implementation requiring bar() to call foo(pl), then it seems like I can't get this to work as is, because the assumptions made by the compilation of foo() and the compilation of the caller of bar() are incompatible.)
As a corollary, if I have a volatile variable v, and I want to call foo(&v) with someone else's function void foo(long *pl), and that person tells me it's safe, I can just cast the pointer before the call, my instinct is to tell them they're wrong because there's no way to guarantee that, and that they should change the declaration to void foo(volatile long *pl) if they want to support the use of volatile variables. Which one of us is correct?
void bar(volatile long* pl) { long x = *pl; foo(&x); *pl = x; }? – James McNellis Sep 9 '11 at 21:25foo()function is supposed to be an atomic increment, for example, then it's possible to call bar() from two threads and lose one of the increments. – Jason S Sep 9 '11 at 21:29volatiledoes not provide atomic variables in C++ so that would be insufficient either way. – AJG85 Sep 9 '11 at 21:33fooshould probably already be taking a volatile pointer anyway. If for examplefoois an atomic increment, casting away thevolatileshould be harmless since the atomic operation will already provide stronger guarantees thanvolatilewould... – R.. Sep 9 '11 at 21:38