术语 | interlockedincrement64 |
释义 | InterlockedIncrement64 语法: C++ LONGLONG __cdecl InterlockedIncrement64( __inout LONGLONG volatile *Addend ); InterlockedIncrement64功能 增量(增加一)指定的价值64位变量作为一个原子操作。 运作32位值,使用InterlockedIncrement功能。 参数 加数[ in , out ] 一个指针变量递增。 返回值 该函数返回结果递增值。 备注 该变量指出的加数参数必须在64对齐位边界,否则,此函数将表现在多处理器的x86系统和不可预测的任何非x86系统。见_aligned_malloc。 在互锁功能提供了一个同步进入一个变量是由多个线程共享的简单机制。此函数是原子与其他方面的互锁函数的调用。 此功能是使用一个编译器的内在可能的情况下。有关详细信息,请参阅Winbase.h头文件和_InterlockedIncrement64。 这个函数生成一个完整的内存屏障(或栅栏),以确保内存操作才能完成。 英特尔森林小组:对于性能要求较高的应用程序,使用InterlockedIncrementAcquire64或InterlockedIncrementRelease64代替。 要求: client最低支持Vista 最低支持serverWindows服务器2003 HeaderWinbase.h(头文件:winuser.h) 参见 互锁变量访问 InterlockedIncrement InterlockedIncrementAcquire64 InterlockedIncrementRelease64 同步功能 如果有任何问题和意见,请发送给微软(wsddocfb@microsoft.com) 生成日期:2009年8月27日 ==英文原文==InterlockedIncrement64 Function Increments (increases by one) the value of the specified 64-bit variable as an atomic operation. To operate on 32-bit values, use the InterlockedIncrement function. Syntax C++ LONGLONG __cdecl InterlockedIncrement64( __inout LONGLONG volatile *Addend ); Parameters Addend [in, out] A pointer to the variable to be incremented. Return Value The function returns the resulting incremented value. Remarks The variable pointed to by the Addend parameter must be aligned on a 64-bit boundary; otherwise, this function will behave unpredictably on multiprocessor x86 systems and any non-x86 systems. See _aligned_malloc. The interlocked functions provide a simple mechanism for synchronizing access to a variable that is shared by multiple threads. This function is atomic with respect to calls to other interlocked functions. This function is implemented using a compiler intrinsic where possible. For more information, see the Winbase.h header file and _InterlockedIncrement64 . This function generates a full memory barrier (or fence) to ensure that memory operations are completed in order. Intel IPF: For performance-critical applications, use InterlockedIncrementAcquire64 or InterlockedIncrementRelease64 instead. Requirements Minimum supported clientWindows Vista Minimum supported serverWindows Server 2003 HeaderWinbase.h (include Windows.h) See Also Interlocked Variable Access InterlockedIncrement InterlockedIncrementAcquire64 InterlockedIncrementRelease64 Synchronization Functions Send comments about this topic to Microsoft Build date: 8/27/2009 ==原始网址==http://msdn.microsoft.com/en-us/library/ms683615(VS.85).aspx\n |
随便看 |
|
windows api函数参考手册包含2258条windows api函数文档,详细介绍nodejs、java、rust调用windows api的方法技巧,是学习windows api编程的入门中文文档。