1
1

The atomic variable should be signed not unsigned.

This commit was SVN r8757.
Этот коммит содержится в:
George Bosilca 2006-01-19 18:47:32 +00:00
родитель 29684dd800
Коммит ee9b31459b

Просмотреть файл

@ -39,7 +39,7 @@ struct mca_mpool_base_registration_t {
unsigned char* bound; unsigned char* bound;
unsigned char* alloc_base; unsigned char* alloc_base;
void* user_data; void* user_data;
uint32_t ref_count; int32_t ref_count;
uint32_t flags; uint32_t flags;
}; };