Hi Paul and perfbook members, Greetings from me! I have a question about 4.3.4.2 A Volatile Solution: > To summarize, the volatile keyword can prevent load tearing and store tearing in cases where the loads and stores are machine-sized and properly aligned. It can also prevent load fusing, store fusing, invented loads, and invented stores. However, although it does prevent the compiler from reordering volatile accesses with each other, it does nothing to prevent the CPU from reordering these accesses. Furthermore, it does nothing to prevent either compiler or CPU from reordering non-volatile accesses with each other or with volatile accesses. Preventing these types of reordering requires the techniques described in the next section. Does this summary apply for both C and C++? Or C only? Thanks very much in advance! Best Regards Nan Xiao