2004-01-11 00:18:25 +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.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* 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.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-11 00:18:25 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2005-07-04 04:13:44 +04:00
|
|
|
#ifndef OPAL_FEW_H
|
|
|
|
#define OPAL_FEW_H
|
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
2004-01-12 05:07:42 +03:00
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2004-08-17 07:06:39 +04:00
|
|
|
/**
|
|
|
|
* Forks, execs, and waits for a subordinate program
|
|
|
|
*
|
|
|
|
* @param argv Null-terminated argument vector; argv[0] is the program
|
|
|
|
* (same as arguments to execvp())
|
|
|
|
*
|
|
|
|
* @param status Upon success, will be filled with the return status
|
|
|
|
* from waitpid(2). The WIF* macros can be used to examine the value
|
|
|
|
* (see waitpid(2)).
|
|
|
|
*
|
|
|
|
* @retval OMPI_SUCCESS If the child launched and exited.
|
|
|
|
* @retval OMPI_ERR_IN_ERRNO If a failure occurred, errno should be
|
|
|
|
* examined for the specific error.
|
|
|
|
*
|
|
|
|
* This function forks, execs, and waits for an executable to
|
|
|
|
* complete. The input argv must be a NULL-terminated array (perhaps
|
2005-07-04 04:13:44 +04:00
|
|
|
* built with the opal_arr_*() interface). Upon success, OMPI_SUCCESS
|
2004-08-17 07:06:39 +04:00
|
|
|
* is returned. This function will wait either until the child
|
|
|
|
* process has exited or waitpid() returns an error other than EINTR.
|
|
|
|
*
|
|
|
|
* Note that a return of OMPI_SUCCESS does \em not imply that the child
|
|
|
|
* process exited successfully -- it simply indicates that the child
|
|
|
|
* process exited. The WIF* macros (see waitpid(2)) should be used to
|
|
|
|
* examine the status to see hold the child exited.
|
2004-09-27 23:38:23 +04:00
|
|
|
*
|
2005-07-04 04:13:44 +04:00
|
|
|
* \warning This function should not be called if \c orte_init()
|
2004-09-27 23:38:23 +04:00
|
|
|
* or \c MPI_Init() have been called. This function is not
|
|
|
|
* safe in a multi-threaded environment in which a handler
|
|
|
|
* for \c SIGCHLD has been registered.
|
2004-08-17 07:06:39 +04:00
|
|
|
*/
|
2005-07-04 04:13:44 +04:00
|
|
|
OMPI_DECLSPEC int opal_few(char *argv[], int *status);
|
2004-01-11 00:18:25 +03:00
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
2004-01-12 05:07:42 +03:00
|
|
|
}
|
|
|
|
#endif
|
2004-06-07 19:33:53 +04:00
|
|
|
#endif /* OMPI_FEW_H */
|