2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* 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.
|
2006-06-08 22:27:17 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-03-14 23:57:21 +03:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
2006-06-08 22:27:17 +04:00
|
|
|
*
|
2005-03-14 23:57:21 +03:00
|
|
|
* Additional copyrights may follow
|
2006-06-08 22:27:17 +04:00
|
|
|
*
|
2005-03-14 23:57:21 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/** @file:
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/orte_constants.h"
|
|
|
|
#include "opal/mca/mca.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
#include "orte/mca/rmgr/base/rmgr_private.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "not available" functions
|
|
|
|
*/
|
|
|
|
int
|
2006-11-16 01:28:14 +03:00
|
|
|
orte_rmgr_base_setup_job_not_available(
|
2006-06-08 22:27:17 +04:00
|
|
|
orte_app_context_t** app_context,
|
2006-08-15 23:54:10 +04:00
|
|
|
orte_std_cntr_t num_context,
|
2006-11-16 01:28:14 +03:00
|
|
|
orte_jobid_t* jobid, opal_list_t *attrs)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
|
|
|
return ORTE_ERR_UNREACH;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
orte_rmgr_base_spawn_not_available(
|
2006-06-08 22:27:17 +04:00
|
|
|
orte_app_context_t** app_context,
|
2006-08-15 23:54:10 +04:00
|
|
|
orte_std_cntr_t num_context,
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_jobid_t* jobid,
|
2006-09-19 05:45:05 +04:00
|
|
|
orte_std_cntr_t num_connect,
|
|
|
|
orte_process_name_t *connect,
|
2006-02-08 22:52:57 +03:00
|
|
|
orte_rmgr_cb_fn_t cbfn,
|
2006-10-17 20:06:17 +04:00
|
|
|
orte_proc_state_t cb_conditions,
|
|
|
|
opal_list_t *attributes)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
|
|
|
return ORTE_ERR_UNREACH;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
orte_rmgr_base_finalize_not_available(void)
|
|
|
|
{
|
|
|
|
return ORTE_ERR_UNREACH;
|
|
|
|
}
|