OpenAFS Master Repository branch, master, updated. 00e32618c0f08f314e191655e373452891213ee5

Gerrit Code Review gerrit@openafs.org
Wed, 15 Jul 2009 09:11:36 -0700 (PDT)


The following commit has been merged in the master branch:
commit 00e32618c0f08f314e191655e373452891213ee5
Author: Asanka Herath <asanka@secure-endpoints.com>
Date:   Wed Jul 15 11:23:42 2009 -0400

    Use InterlockedExchangeAdd() instead of InterlockedAdd() on Windows
    
    InterlockedAdd() is not supported on all the platforms we wish to
    support.  However, InterlockedExchangeAdd() is.  The two
    functions are semantically similar with the exception that
    InterlockedExchangeAdd() returns the initial value of the object
    being modified while InterlockedAdd() returns the resulting
    value.  Since the return value of the rx_MutexAdd() macro is
    unused, this is irrelevant.
    
    Reviewed-on: http://gerrit.openafs.org/98
    Verified-by: Jeffrey Altman <jaltman@openafs.org>
    Reviewed-by: Jeffrey Altman <jaltman@openafs.org>

 src/rx/rx.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

-- 
OpenAFS Master Repository