File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 15
15
* and Technology (RIST). All rights reserved.
16
16
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
17
17
* reserved.
18
+ * Copyright (c) 2017 IBM Corporation. All rights reserved.
18
19
* $COPYRIGHT$
19
20
*
20
21
* Additional copyrights may follow
@@ -43,9 +44,9 @@ static opal_condition_t mca_pml_bsend_condition; /* condition variable to block
43
44
static mca_allocator_base_component_t * mca_pml_bsend_allocator_component ;
44
45
static mca_allocator_base_module_t * mca_pml_bsend_allocator ; /* sub-allocator to manage users buffer */
45
46
static size_t mca_pml_bsend_usersize ; /* user provided buffer size */
46
- static unsigned char * mca_pml_bsend_userbase ; /* user provided buffer base */
47
- static unsigned char * mca_pml_bsend_base ; /* adjusted base of user buffer */
48
- static unsigned char * mca_pml_bsend_addr ; /* current offset into user buffer */
47
+ unsigned char * mca_pml_bsend_userbase ; /* user provided buffer base */
48
+ unsigned char * mca_pml_bsend_base ; /* adjusted base of user buffer */
49
+ unsigned char * mca_pml_bsend_addr ; /* current offset into user buffer */
49
50
static size_t mca_pml_bsend_size ; /* adjusted size of user buffer */
50
51
static size_t mca_pml_bsend_count ; /* number of outstanding requests */
51
52
static size_t mca_pml_bsend_pagesz ; /* mmap page size */
Original file line number Diff line number Diff line change 9
9
* University of Stuttgart. All rights reserved.
10
10
* Copyright (c) 2004-2005 The Regents of the University of California.
11
11
* All rights reserved.
12
+ * Copyright (c) 2017 IBM Corporation. All rights reserved.
12
13
* $COPYRIGHT$
13
14
*
14
15
* Additional copyrights may follow
@@ -36,6 +37,10 @@ OMPI_DECLSPEC int mca_pml_base_bsend_request_fini(ompi_request_t*);
36
37
OMPI_DECLSPEC void * mca_pml_base_bsend_request_alloc_buf ( size_t length );
37
38
OMPI_DECLSPEC int mca_pml_base_bsend_request_free (void * addr );
38
39
40
+ extern unsigned char * mca_pml_bsend_userbase ; /* user provided buffer base */
41
+ extern unsigned char * mca_pml_bsend_base ; /* adjusted base of user buffer */
42
+ extern unsigned char * mca_pml_bsend_addr ; /* current offset into user buffer */
43
+
39
44
END_C_DECLS
40
45
41
46
#endif
You can’t perform that action at this time.
0 commit comments