1
1

shmem base: make these the version-less struct names

Minor style commit; no substantive code change.
Этот коммит содержится в:
Jeff Squyres 2015-02-26 14:04:15 -08:00
родитель 90a2c3cd99
Коммит 312b0afb67
2 изменённых файлов: 5 добавлений и 7 удалений

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

@ -124,14 +124,12 @@ OPAL_DECLSPEC extern bool opal_shmem_base_selected;
/** /**
* Global component struct for the selected component * Global component struct for the selected component
*/ */
OPAL_DECLSPEC extern const opal_shmem_base_component_2_0_0_t OPAL_DECLSPEC extern opal_shmem_base_component_t *opal_shmem_base_component;
*opal_shmem_base_component;
/** /**
* Global module struct for the selected module * Global module struct for the selected module
*/ */
OPAL_DECLSPEC extern const opal_shmem_base_module_2_0_0_t OPAL_DECLSPEC extern opal_shmem_base_module_t *opal_shmem_base_module;
*opal_shmem_base_module;
/** /**
* Runtime hint * Runtime hint

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

@ -9,7 +9,7 @@
* University of Stuttgart. All rights reserved. * University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California. * Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved. * All rights reserved.
* Copyright (c) 2007-2010 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2007-2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2010-2011 Los Alamos National Security, LLC. * Copyright (c) 2010-2011 Los Alamos National Security, LLC.
* All rights reserved. * All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
@ -36,8 +36,8 @@
* globals * globals
*/ */
bool opal_shmem_base_selected = false; bool opal_shmem_base_selected = false;
const opal_shmem_base_component_2_0_0_t *opal_shmem_base_component = NULL; opal_shmem_base_component_t *opal_shmem_base_component = NULL;
const opal_shmem_base_module_2_0_0_t *opal_shmem_base_module = NULL; opal_shmem_base_module_t *opal_shmem_base_module = NULL;
/* ////////////////////////////////////////////////////////////////////////// */ /* ////////////////////////////////////////////////////////////////////////// */