1919
2020#include "orte/util/proc_info.h"
2121
22- #include "grpcomm_brks .h"
22+ #include "grpcomm_brucks .h"
2323
2424static int my_priority = 5 ;
25- static int brks_open (void );
26- static int brks_close (void );
27- static int brks_query (mca_base_module_t * * module , int * priority );
28- static int brks_register (void );
25+ static int brucks_open (void );
26+ static int brucks_close (void );
27+ static int brucks_query (mca_base_module_t * * module , int * priority );
28+ static int brucks_register (void );
2929
3030/*
3131 * Struct of function pointers that need to be initialized
3232 */
33- orte_grpcomm_base_component_t mca_grpcomm_brks_component = {
33+ orte_grpcomm_base_component_t mca_grpcomm_brucks_component = {
3434 .base_version = {
3535 ORTE_GRPCOMM_BASE_VERSION_3_0_0 ,
3636
37- .mca_component_name = "brks " ,
37+ .mca_component_name = "brucks " ,
3838 MCA_BASE_MAKE_VERSION (component , ORTE_MAJOR_VERSION , ORTE_MINOR_VERSION ,
3939 ORTE_RELEASE_VERSION ),
40- .mca_open_component = brks_open ,
41- .mca_close_component = brks_close ,
42- .mca_query_component = brks_query ,
43- .mca_register_component_params = brks_register ,
40+ .mca_open_component = brucks_open ,
41+ .mca_close_component = brucks_close ,
42+ .mca_query_component = brucks_query ,
43+ .mca_register_component_params = brucks_register ,
4444 },
4545 .base_data = {
4646 /* The component is checkpoint ready */
4747 MCA_BASE_METADATA_PARAM_CHECKPOINT
4848 },
4949};
5050
51- static int brks_register (void )
51+ static int brucks_register (void )
5252{
53- mca_base_component_t * c = & mca_grpcomm_brks_component .base_version ;
53+ mca_base_component_t * c = & mca_grpcomm_brucks_component .base_version ;
5454
5555 /* make the priority adjustable so users can select
56- * brks for use by apps without affecting daemons
56+ * brucks for use by apps without affecting daemons
5757 */
5858 my_priority = 50 ;
5959 (void ) mca_base_component_var_register (c , "priority" ,
60- "Priority of the grpcomm brks component" ,
60+ "Priority of the grpcomm brucks component" ,
6161 MCA_BASE_VAR_TYPE_INT , NULL , 0 , 0 ,
6262 OPAL_INFO_LVL_9 ,
6363 MCA_BASE_VAR_SCOPE_READONLY ,
@@ -66,19 +66,19 @@ static int brks_register(void)
6666}
6767
6868/* Open the component */
69- static int brks_open (void )
69+ static int brucks_open (void )
7070{
7171 return ORTE_SUCCESS ;
7272}
7373
74- static int brks_close (void )
74+ static int brucks_close (void )
7575{
7676 return ORTE_SUCCESS ;
7777}
7878
79- static int brks_query (mca_base_module_t * * module , int * priority )
79+ static int brucks_query (mca_base_module_t * * module , int * priority )
8080{
8181 * priority = my_priority ;
82- * module = (mca_base_module_t * )& orte_grpcomm_brks_module ;
82+ * module = (mca_base_module_t * )& orte_grpcomm_brucks_module ;
8383 return ORTE_SUCCESS ;
8484}
0 commit comments