_InterlockedDecrement
funkcje wewnętrzne
Zapewnia wewnętrzną obsługę kompilatora dla funkcji InterlockedDecrement zestawu Sdk systemu Windows Win32. Funkcje _InterlockedDecrement
wewnętrzne są specyficzne dla firmy Microsoft.
Składnia
long _InterlockedDecrement(
long volatile * lpAddend
);
long _InterlockedDecrement_acq(
long volatile * lpAddend
);
long _InterlockedDecrement_rel(
long volatile * lpAddend
);
long _InterlockedDecrement_nf(
long volatile * lpAddend
);
short _InterlockedDecrement16(
short volatile * lpAddend
);
short _InterlockedDecrement16_acq(
short volatile * lpAddend
);
short _InterlockedDecrement16_rel(
short volatile * lpAddend
);
short _InterlockedDecrement16_nf(
short volatile * lpAddend
);
__int64 _InterlockedDecrement64(
__int64 volatile * lpAddend
);
__int64 _InterlockedDecrement64_acq(
__int64 volatile * lpAddend
);
__int64 _InterlockedDecrement64_rel(
__int64 volatile * lpAddend
);
__int64 _InterlockedDecrement64_nf(
__int64 volatile * lpAddend
);
Parametry
lpAddend
[in, out] Wskaźnik nietrwały do zmiennej, która ma zostać zdekrementowana.
Wartość zwracana
Wartość zwracana jest wartością wynikowej dekrementowanej.
Wymagania
Nieodłączny | Architektura |
---|---|
_InterlockedDecrement , _InterlockedDecrement16 |
x86, ARM, x64, ARM64 |
_InterlockedDecrement64 |
ARM, x64, ARM64 |
_InterlockedDecrement_acq , _InterlockedDecrement_rel , , , _InterlockedDecrement16_rel _InterlockedDecrement64_nf _InterlockedDecrement16_acq _InterlockedDecrement16_nf _InterlockedDecrement64_acq _InterlockedDecrement64_rel _InterlockedDecrement_nf |
ARM, ARM64 |
Plik<nagłówka intrin.h>
Uwagi
Istnieje kilka odmian, _InterlockedDecrement
które różnią się w zależności od typów danych, które obejmują, i czy jest używana semantyka pozyskiwania lub wydawania specyficzne dla procesora.
_InterlockedDecrement
Chociaż funkcja działa na 32-bitowych wartościach całkowitych, _InterlockedDecrement16
działa na 16-bitowych wartościach całkowitych i _InterlockedDecrement64
działa na 64-bitowych wartościach całkowitych.
Na platformach ARM użyj funkcji wewnętrznych i _acq
_rel
sufiksów, jeśli potrzebujesz semantyki uzyskiwania i wydawania, takich jak na początku i na końcu sekcji krytycznej. Funkcje wewnętrzne z sufiksem _nf
("bez ogrodzenia") nie działają jako bariera pamięci.
Zmienna wskazywana przez lpAddend
parametr musi być wyrównana do granicy 32-bitowej. W przeciwnym razie ta funkcja kończy się niepowodzeniem w systemach wieloprocesorowych x86 i wszystkich systemach innych niż x86. Aby uzyskać więcej informacji, zobacz wyrównanie.
Te procedury są dostępne tylko jako funkcje wewnętrzne.
Przykład
// compiler_intrinsics_interlocked.cpp
// compile with: /Oi
#define _CRT_RAND_S
#include <cstdlib>
#include <cstdio>
#include <process.h>
#include <windows.h>
// To declare an interlocked function for use as an intrinsic,
// include intrin.h and put the function in a #pragma intrinsic
// statement.
#include <intrin.h>
#pragma intrinsic (_InterlockedIncrement)
// Data to protect with the interlocked functions.
volatile LONG data = 1;
void __cdecl SimpleThread(void* pParam);
const int THREAD_COUNT = 6;
int main() {
DWORD num;
HANDLE threads[THREAD_COUNT];
int args[THREAD_COUNT];
int i;
for (i = 0; i < THREAD_COUNT; i++) {
args[i] = i + 1;
threads[i] = reinterpret_cast<HANDLE>(_beginthread(SimpleThread, 0,
args + i));
if (threads[i] == reinterpret_cast<HANDLE>(-1))
// error creating threads
break;
}
WaitForMultipleObjects(i, threads, true, INFINITE);
}
// Code for our simple thread
void __cdecl SimpleThread(void* pParam) {
int threadNum = *((int*)pParam);
int counter;
unsigned int randomValue;
unsigned int time;
errno_t err = rand_s(&randomValue);
if (err == 0) {
time = (unsigned int) ((double) randomValue / (double) UINT_MAX * 500);
while (data < 100) {
if (data < 100) {
_InterlockedIncrement(&data);
printf_s("Thread %d: %d\n", threadNum, data);
}
Sleep(time); // wait up to half of a second
}
}
printf_s("Thread %d complete: %d\n", threadNum, data);
}
Zobacz też
Funkcje wewnętrzne kompilatora
Słowa kluczowe
Konflikty z kompilatorem x86