|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
InterlockedCompareExchange
[New - Windows NT]
The InterlockedCompareExchange function performs an atomic comparison of the values specified in the Destination and Comperand parameters and exchange of the values, based on the outcome of the comparison. The function prevents more than one thread from using the same variable simultaneously.
PVOID InterlockedCompareExchange(
PVOID *Destination, // pointer to the destination pointer PVOID Exchange, // the exchange value PVOID Comperand // the value to compare );
Parameters
Destination
Specifies the address of the destination value. This is a 32-bit value. The sign is ignored.
Exchange
Specifies the exchange value. This is a 32-bit value. The sign is ignored.
Comperand
Specifies the value to compare to Destination. This is a 32-bit value. The sign is ignored.
Return Values
The return value is the initial value of the destination.
Remarks
The functions InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, InterlockedExchangeAdd, and InterlockedIncrement provide a simple mechanism for synchronizing access to a variable that is shared by multiple threads. The threads of different processes can use this mechanism if the variable is in shared memory. The InterlockedCompareExchange function performs an atomic comparison of the Destination value with the Comperand value. If the Destination value is equal to the Comperand value, the Exchange value is stored in the address specified by Destination. Otherwise, no operation is performed.
The variables for InterlockedCompareExchange must be aligned on a 32-bit boundary; otherwise, this function will fail on multiprocessor x86 systems.
See Also
InterlockedDecrement, InterlockedExchange, InterlockedExchangeAdd, InterlockedIncrement
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
InterlockedCompareExchange
[Новый - Windows NT]
Функция InterlockedCompareExchange выполняет атомное сравнение величин определенных в Расположении и параметрах Comperand и биржа величин, основанных в результате сравнения. Функция предохраняет более, чем один резьба чтобы использовать ту же переменную одновременно.
PVOID InterlockedCompareExchange(
PVOID *РАСПОЛОЖЕНИЕ, // указатель на указатель расположения PVOID Биржи, // меновая стоимость PVOID Comperand // величина, чтобы сравниваться );
Параметры
Расположение
Определяет адрес величины расположения. Это - 32- битовая величина. Знак проигнорирован.
Биржа
Определяет меновую стоимость. Это - 32- битовая величина. Знак проигнорирован.
Comperand
Определяет величину, чтобы сравнивать с Расположением. Это - 32- битовая величина. Знак проигнорирован.
Обратные Величины
Обратная величина является начальной величиной расположения.
Замечания
Функции InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, InterlockedExchangeAdd, и InterlockedIncrement обеспечивают простой механизм для синхронизации доступа к переменной, которая распространена многочисленной резьбой. Резьба других процессов может использовать этот механизм если переменная - в коллективной памяти. Функция InterlockedCompareExchange выполняет атомное сравнение величины Расположения с величиной Comperand. Если величина Расположения равняется величине Comperand, Меновая стоимость сохранена в адресе определенном Расположением. В противном случае, никакое действие не выполнено.
Переменные для InterlockedCompareExchange должны быть выровнены на 32- битовой границе; в противном случае, эта функция потерпит неудачу во многопроцессорных x86 системах.
Смотри Также
InterlockedDecrement, InterlockedExchange, InterlockedExchangeAdd, InterlockedIncrement
|
|
|
|
| |