show/hide this revision's text 3 fixed typo

This is a complex question, please consider carefully before answering.

Consider this situation. Two threads (a reader and a writer) access a single global int. Is this safe? Normally, I would respond without thought, yes!

However, it seems to me that Herb Sutter doesn't think so. In his articles on effective concurrency he discusses a flawed lock-free queue and a corrected version.

In the end of the first article and the beginning of the second he discusses a rarely considered trait of variables, write ordering. Int's are atomic, good, but ints aren't necessarily ordered which could foobar any lock-free algorithm, including my above scenario. I fully agree that the only way to guarantee correct multithreaded behavior on all platforms present and future is to use atomics or mutexes.

My question is, is this ever a problem on real hardware? Or is this just being pendanticpedantic? What about uniprocessor systems? Embedded power pc processors?

Clarification: I'm more interested in what Mr. Sutter said about the processor or the cache reordering writes. I can always bust open the assembly for my program to ensure the optimizer isn't screwing me, or just turn it of for one file.

show/hide this revision's text 2 'never eat cake; eat salmon sandwiches'; necessary has but one c; writer has but one t

This is a complex question, please consider carefully before answering.

Consider this situation. Two threads (a reader and a writterwriter) access a single global int. Is this safe? Normally, I would respond without thought, yes!

However, it seems to me that Herb Sutter doesn't think so. In his articles on effective concurrency he discusses a flawed lock-free queue and a corrected version.

In the end of the first article and the beginning of the second he discusses a rarely considered trait of variables, write ordering. Int's are atomic, good, but ints aren't neccessarily necessarily ordered which could foobar any lock-free algorithm, including my above scenario. I fully agree that the only way to guarantee correct multithreaded behavior on all platforms present and future is to use atomics or mutexes.

My question is, is this ever a problem on real hardware? Or is this just being pendantic? What about uniprocessor systems? Embedded power pc processors?

Clarification: I'm more interested in what Mr. Sutter said about the processor or the cache reordering writes. I can always bust open the assembly for my program to ensure the optimizer isn't screwing me, or just turn it of for one file.

show/hide this revision's text 1

Multithreaded paranoia

This is a complex question, please consider carefully before answering.

Consider this situation. Two threads (a reader and a writter) access a single global int. Is this safe? Normally, I would respond without thought, yes!

However, it seems to me that Herb Sutter doesn't think so. In his articles on effective concurrency he discusses a flawed lock-free queue and a corrected version.

In the end of the first article and the beginning of the second he discusses a rarely considered trait of variables, write ordering. Int's are atomic, good, but ints aren't neccessarily ordered which could foobar any lock-free algorithm, including my above scenario. I fully agree that the only way to guarantee correct multithreaded behavior on all platforms present and future is to use atomics or mutexes.

My question is, is this ever a problem on real hardware? Or is this just being pendantic? What about uniprocessor systems? Embedded power pc processors?

Clarification: I'm more interested in what Mr. Sutter said about the processor or the cache reordering writes. I can always bust open the assembly for my program to ensure the optimizer isn't screwing me, or just turn it of for one file.