The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
Newsgroups: comp.programming.threads
From: Scott Meyers <Use...@aristeia.com>
Date: Thu, 3 Feb 2005 20:13:29 -0800
Local: Thurs, Feb 3 2005 11:13 pm
Subject: Re: Memory Barriers, Compiler Optimizations, etc.
On Tue, 01 Feb 2005 23:14:30 -0800, Gianni Mariani wrote: I post this with great trepedation, because I've gotten this backwards > All aquire does is to guarentee that any load (memory fetch) operations, > possibly many, that have been requested before the barrier instruction > are completed before any subsequent memory fetch operations. several times before, but my understanding is that an acquire guarantees that subsequent memory operations will not take place before any operations preceding the acquire, i.e., that memory references "after" the barrier (in program order) won't migrate up to "before" the barrier. However, it's a unidirectional barrier, so memory operations preceding the barrier may migrate down to after it. Conceptually, we can move memory operations into the critical section, but we can't move opertions inside the critical section to above the acquire (i.e., out of the critical section). Did I get it wrong again, did I misread what you wrote, or is there a > volatile int v1 = BAD; Yes, but consider: > volatile bool done = false; > reader: reader: The assignment to x can be moved down to between b and c, right? Also, the Scott You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||