From ee9b31459b4f712e3dbba57e3c096959c1a8c23d Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 19 Jan 2006 18:47:32 +0000 Subject: [PATCH] The atomic variable should be signed not unsigned. This commit was SVN r8757. --- ompi/mca/mpool/mpool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/mpool/mpool.h b/ompi/mca/mpool/mpool.h index ad3b6dbe7d..e6ae5a596d 100644 --- a/ompi/mca/mpool/mpool.h +++ b/ompi/mca/mpool/mpool.h @@ -39,7 +39,7 @@ struct mca_mpool_base_registration_t { unsigned char* bound; unsigned char* alloc_base; void* user_data; - uint32_t ref_count; + int32_t ref_count; uint32_t flags; };