Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 2.09 KB

File metadata and controls

69 lines (59 loc) · 2.09 KB
title _ReadWriteBarrier | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
_ReadWriteBarrier
dev_langs
C++
helpviewer_keywords
ReadWriteBarrier intrinsic
_ReadWriteBarrier intrinsic
ms.assetid dd9f58b5-8bb6-494e-bb0f-9fe184f3908d
caps.latest.revision 27
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

_ReadWriteBarrier

Microsoft Specific

Limits the compiler optimizations that can reorder memory accesses across the point of the call.

Caution

The _ReadBarrier, _WriteBarrier, and _ReadWriteBarrier compiler intrinsics and the MemoryBarrier macro are all deprecated and should not be used. For inter-thread communication, use mechanisms such as atomic_thread_fence and std::atomic<T>, which are defined in the C++ Standard Library. For hardware access, use the /volatile:iso compiler option together with the volatile keyword.

Syntax

void _ReadWriteBarrier(void);  

Requirements

Intrinsic Architecture
_ReadWriteBarrier x86, [!INCLUDEvcprx64]

Header file <intrin.h>

Remarks

The _ReadWriteBarrier intrinsic limits the compiler optimizations that can remove or reorder memory accesses across the point of the call.

END Microsoft Specific

See Also

_ReadBarrier
_WriteBarrier
Compiler Intrinsics
Keywords