From 5ea892dc0b234f26f146d31d439401048b591f19 Mon Sep 17 00:00:00 2001 From: Boris Karasev Date: Tue, 19 Dec 2017 12:31:48 +0200 Subject: [PATCH] oshmem: remove `shmem_put/get` when not the C11 case in accordance with the spec v1.3 Fixes: https://github.com/open-mpi/ompi/issues/4307 Signed-off-by: Boris Karasev --- oshmem/include/shmem-compat.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/oshmem/include/shmem-compat.h b/oshmem/include/shmem-compat.h index e24781224a4..19a873f7903 100644 --- a/oshmem/include/shmem-compat.h +++ b/oshmem/include/shmem-compat.h @@ -1,6 +1,6 @@ /* oshmem/include/shmem-compat.h. This file contains OpenSHMEM lagacy API */ /* - * Copyright (c) 2014-2015 Mellanox Technologies, Inc. + * Copyright (c) 2014-2017 Mellanox Technologies, Inc. * All rights reserved. * $COPYRIGHT$ * @@ -33,11 +33,6 @@ OSHMEM_DECLSPEC void* shmemalign(size_t align, size_t size); OSHMEM_DECLSPEC void* shrealloc(void *ptr, size_t size); OSHMEM_DECLSPEC void shfree(void* ptr); -OSHMEM_DECLSPEC void shmem_char_put(char *target, const char *source, size_t len, int pe); -OSHMEM_DECLSPEC void shmem_char_get(char *target, const char *source, size_t len, int pe); - -OSHMEM_DECLSPEC void shmem_put(void *target, const void *source, size_t len, int pe); -OSHMEM_DECLSPEC void shmem_get(void *target, const void *source, size_t len, int pe); OSHMEM_DECLSPEC void globalexit(int status); #if defined(c_plusplus) || defined(__cplusplus)