Live data from Hacker News

Volatile: C Keyword Myths Dispelled

safercode.com

1–3 of 3 posts

Re: Volatile: C Keyword Myths Dispelled

#3
post #2

And additionally, cases when volatile is really necessary around setjmp()/longjmp() are pretty rare.

True..I try to avoid volatiles as much as I can. And as someone else pointed out on the blog in the commens, many implementations even get the volatiles wrong giving rise to a lot of bugs, so even if you were utmost careful about it, it can still cause issues.