atomic_fetch_or, atomic_fetch_or_explicit
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <stdatomic.h>
|
||
| C atomic_fetch_or( volatile A* obj, M arg ); |
(1) | (C11以来) |
| C atomic_fetch_or_explicity( volatile A* obj, M arg, memory_order order ); |
(2) | (C11以来) |
アトミックビット演算の結果をOR
objの古い値との間objによって指された値を置き換え、arg、以前に開催された値objを返します。操作は、リード·モディファイ·ライト操作です。最初のバージョンの受注メモリがmemory_order_seq_cstに従ってアクセスし、2番目のバージョンの受注メモリはorderに従ってアクセス.Original:
Atomically replaces the value pointed by
obj with the result of bitwise OR between the old value of obj and arg, and returns the value obj held previously. The operation is read-modify-write operation. The first version orders memory accesses according to memory_order_seq_cst, the second version orders memory accesses according to order.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
これは、すべての原子オブジェクト·タイプに対して定義汎用関数です。
Aがアトミックオブジェクトの型である、MかA場合Aアトミック整数型であるか、またはptrdiff_tAアトミックれるポインタ型場合に対応する非原子型で.Original:
This is a 汎用関数 defined for all atomic object types.
A is the type of an atomic object, M is either the non-atomic type corresponding to A if A is atomic integer type, or ptrdiff_t if A is atomic pointer type.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
| obj | - | 変更するアトミックオブジェクトへのポインタ
Original: pointer to the atomic object to modify The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| arg | - | ビット単位のORに原子オブジェクトに格納された値までの値
Original: the value to bitwise OR to the value stored in the atomic object The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| order | - | メモリ同期は、この操作の順序:すべての値が許可されています
Original: the memory synchronization ordering for this operation: all values are permitted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
値は、以前
objが指すアトミックオブジェクトでなければ開催された.Original:
The value held previously be the atomic object pointed to by
obj.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] も参照してください
| atomic_fetch_or atomic_fetch_or_explicit (C11) |
論理的原子または Original: atomic logical OR The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) |
| アトミック排他的論理和 Original: atomic logical exclusive OR The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) | |
| C++ documentation for atomic_fetch_or, atomic_fetch_or_explicit
| |