5dfd54c778
Clean up the remainder of the size_t references in the runtime itself. Convert to orte_std_cntr_t wherever it makes sense (only avoid those places where the actual memory size is referenced). Remove the obsolete oob barrier function (we actually obsoleted it a long time ago - just never bothered to clean it up). I have done my best to go through all the components and catch everything, even if I couldn't test compile them since I wasn't on that type of system. Still, I cannot guarantee that problems won't show up when you test this on specific systems. Usually, these will just show as "warning: comparison between signed and unsigned" notes which are easily fixed (just change a size_t to orte_std_cntr_t). In some places, people didn't use size_t, but instead used some other variant (e.g., I found several places with uint32_t). I tried to catch all of them, but... Once we get all the instances caught and fixed, this should once and for all resolve many of the heterogeneity problems. This commit was SVN r11204.
111 строки
2.3 KiB
C
111 строки
2.3 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
/** @file:
|
|
*
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/orte_constants.h"
|
|
#include "opal/mca/mca.h"
|
|
#include "orte/mca/rmgr/base/base.h"
|
|
|
|
|
|
/*
|
|
* "not available" functions
|
|
*/
|
|
int
|
|
orte_rmgr_base_create_not_available(
|
|
orte_app_context_t** app_context,
|
|
orte_std_cntr_t num_context,
|
|
orte_jobid_t* jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_query_not_available(void)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_allocate_not_available(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_deallocate_not_available(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_map_not_available(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_launch_not_available(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_terminate_job_not_available(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_terminate_proc_not_available(const orte_process_name_t* proc_name)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_signal_job_not_available(orte_jobid_t jobid, int32_t signal)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_signal_proc_not_available(const orte_process_name_t* proc_name, int32_t signal)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_spawn_not_available(
|
|
orte_app_context_t** app_context,
|
|
orte_std_cntr_t num_context,
|
|
orte_jobid_t* jobid,
|
|
orte_rmgr_cb_fn_t cbfn,
|
|
orte_proc_state_t cb_conditions)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|
|
|
|
int
|
|
orte_rmgr_base_finalize_not_available(void)
|
|
{
|
|
return ORTE_ERR_UNREACH;
|
|
}
|