Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e50774034e |
4 changed files with 6 additions and 51 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (ucx-1.10.1.tar.gz) = 54375650130e96a7a83bbcc90638a995fb46ba7f6765c48c4c96ea75d75890cbf16bc510c737ee2db010ce163418458b1a0675849ed724bcf8c006c84befcbc0
|
||||
SHA512 (ucx-1.10.1.tar.gz) = 949d0583f655b1b08701acb38bc97d46f03644b496168dec57bc9477ab117966f6addbc266e4ba0ef95050b516bdf747773362d7b46ad1838d1972b14ff2bcd8
|
||||
|
|
|
|||
|
|
@ -1,35 +0,0 @@
|
|||
diff --git a/config/m4/sysdep.m4 b/config/m4/sysdep.m4
|
||||
index b1e5485..0133803 100644
|
||||
--- a/config/m4/sysdep.m4
|
||||
+++ b/config/m4/sysdep.m4
|
||||
@@ -158,7 +158,7 @@ AC_MSG_CHECKING([malloc hooks])
|
||||
SAVE_CFLAGS=$CFLAGS
|
||||
CFLAGS="$CFLAGS $CFLAGS_NO_DEPRECATED"
|
||||
CHECK_CROSS_COMP([AC_LANG_SOURCE([#include <malloc.h>
|
||||
- static int rc = 1;
|
||||
+ static volatile int rc = 1;
|
||||
void *ptr;
|
||||
void *myhook(size_t size, const void *caller) {
|
||||
rc = 0;
|
||||
diff --git a/configure b/configure
|
||||
index db54a6a..fa4352d 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -22221,7 +22221,7 @@ CFLAGS="$CFLAGS $CFLAGS_NO_DEPRECATED"
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <malloc.h>
|
||||
- static int rc = 1;
|
||||
+ volatile static int rc = 1;
|
||||
void *ptr;
|
||||
void *myhook(size_t size, const void *caller) {
|
||||
rc = 0;
|
||||
@@ -22252,7 +22252,7 @@ else
|
||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||
/* end confdefs.h. */
|
||||
#include <malloc.h>
|
||||
- static int rc = 1;
|
||||
+ volatile static int rc = 1;
|
||||
void *ptr;
|
||||
void *myhook(size_t size, const void *caller) {
|
||||
rc = 0;
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/src/ucs/datastruct/mpool.inl b/src/ucs/datastruct/mpool.inl
|
||||
index d06e2f9..6b32406 100644
|
||||
--- a/src/ucs/datastruct/mpool.inl
|
||||
+++ b/src/ucs/datastruct/mpool.inl
|
||||
@@ -71,7 +71,7 @@ static inline ucs_mpool_t *ucs_mpool_obj_owner(void *obj)
|
||||
|
||||
static inline void ucs_mpool_put_inline(void *obj)
|
||||
{
|
||||
- ucs_mpool_elem_t *elem;
|
||||
+ ucs_mpool_elem_t * volatile elem;
|
||||
ucs_mpool_t *mp;
|
||||
|
||||
elem = ucs_mpool_obj_to_elem(obj);
|
||||
7
ucx.spec
7
ucx.spec
|
|
@ -16,12 +16,12 @@
|
|||
|
||||
Name: ucx
|
||||
Version: 1.10.1
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
Summary: UCX is a communication library implementing high-performance messaging
|
||||
|
||||
License: BSD
|
||||
URL: http://www.openucx.org
|
||||
Source: https://github.com/openucx/%{name}/releases/download/v1.10.1-rc1/ucx-1.10.1.tar.gz
|
||||
Source: https://github.com/openucx/%{name}/releases/download/v1.10.1/ucx-1.10.1.tar.gz
|
||||
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
Prefix: %{_prefix}
|
||||
|
|
@ -289,6 +289,9 @@ process to map the memory of another process into its virtual address space.
|
|||
|
||||
|
||||
%changelog
|
||||
* Thu May 27 2021 Yurii Shestakov <yuriis@nvidia.com> 1.10.1-2
|
||||
- Bump version to 1.10.1
|
||||
|
||||
* Mon Apr 26 2021 Yurii Shestakov <yuriis@nvidia.com> 1.10.1-rc1
|
||||
- Bump version to 1.10.1-rc1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue