* code to deal with getting callbacks / waiting for SIGCHLD. These should
only be used if the RTE init functions have been called. Not quite as flexible as the real waitpid() function (no -1 support), but all I need for the SSH / BProc / RMS pcms. This code is not yet turned on by default (need to add the init / finalize calls to ompi_rte_init?? and ompi_rte_finalize() This commit was SVN r2860.
Этот коммит содержится в:
родитель
cbefdfe013
Коммит
40c0b6b12d
@ -979,6 +979,7 @@ AC_CONFIG_FILES([
|
||||
test/mca/llm/base/Makefile
|
||||
test/mca/pcm/Makefile
|
||||
test/mca/pcm/base/Makefile
|
||||
test/rte/Makefile
|
||||
test/threads/Makefile
|
||||
test/util/Makefile
|
||||
])
|
||||
|
@ -15,7 +15,8 @@ headers = \
|
||||
runtime.h \
|
||||
runtime_types.h \
|
||||
runtime_internal.h \
|
||||
ompi_progress.h
|
||||
ompi_progress.h \
|
||||
ompi_rte_wait.h
|
||||
|
||||
libruntime_la_SOURCES = \
|
||||
$(headers) \
|
||||
@ -35,7 +36,8 @@ libruntime_la_SOURCES = \
|
||||
ompi_rte_parse_environ.c \
|
||||
ompi_rte_parse_cmd_line.c \
|
||||
ompi_rte_parse_daemon_cmd_line.c \
|
||||
ompi_rte_pcm.c
|
||||
ompi_rte_pcm.c \
|
||||
ompi_rte_wait.c
|
||||
|
||||
# Conditionally install the header files
|
||||
|
||||
|
435
src/runtime/ompi_rte_wait.c
Обычный файл
435
src/runtime/ompi_rte_wait.c
Обычный файл
@ -0,0 +1,435 @@
|
||||
/*
|
||||
* $HEADER$
|
||||
*/
|
||||
|
||||
#include "ompi_config.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
#include "runtime/ompi_rte_wait.h"
|
||||
#include "class/ompi_object.h"
|
||||
#include "class/ompi_list.h"
|
||||
#include "event/event.h"
|
||||
#include "include/constants.h"
|
||||
#include "threads/mutex.h"
|
||||
#include "threads/condition.h"
|
||||
#include "runtime/ompi_progress.h"
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Local Class Declarations
|
||||
*
|
||||
********************************************************************/
|
||||
struct blk_waitpid_data_t {
|
||||
ompi_object_t super;
|
||||
ompi_condition_t *cond;
|
||||
volatile int done;
|
||||
volatile int status;
|
||||
};
|
||||
typedef struct blk_waitpid_data_t blk_waitpid_data_t;
|
||||
|
||||
struct pending_pids_item_t {
|
||||
ompi_list_item_t super;
|
||||
pid_t pid;
|
||||
int status;
|
||||
};
|
||||
typedef struct pending_pids_item_t pending_pids_item_t;
|
||||
|
||||
struct registered_cb_item_t {
|
||||
ompi_list_item_t super;
|
||||
pid_t pid;
|
||||
ompi_rte_wait_fn_t callback;
|
||||
void *data;
|
||||
};
|
||||
typedef struct registered_cb_item_t registered_cb_item_t;
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Local Class Definitions
|
||||
*
|
||||
********************************************************************/
|
||||
static void
|
||||
blk_waitpid_data_construct(ompi_object_t *obj)
|
||||
{
|
||||
blk_waitpid_data_t *data = (blk_waitpid_data_t*) obj;
|
||||
|
||||
data->cond = OBJ_NEW(ompi_condition_t);
|
||||
data->done = 0;
|
||||
data->status = 0;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
blk_waitpid_data_destruct(ompi_object_t *obj)
|
||||
{
|
||||
blk_waitpid_data_t *data = (blk_waitpid_data_t*) obj;
|
||||
|
||||
if (NULL != data->cond) OBJ_RELEASE(data->cond);
|
||||
}
|
||||
|
||||
|
||||
static OBJ_CLASS_INSTANCE(blk_waitpid_data_t, ompi_object_t,
|
||||
blk_waitpid_data_construct,
|
||||
blk_waitpid_data_destruct);
|
||||
|
||||
static OBJ_CLASS_INSTANCE(pending_pids_item_t, ompi_list_item_t, NULL, NULL);
|
||||
|
||||
static OBJ_CLASS_INSTANCE(registered_cb_item_t, ompi_list_item_t, NULL, NULL);
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Local Variables
|
||||
*
|
||||
********************************************************************/
|
||||
static ompi_mutex_t mutex;
|
||||
static ompi_list_t pending_pids;
|
||||
static ompi_list_t registered_cb;
|
||||
static ompi_mutex_t ev_reg_mutex;
|
||||
static volatile bool ev_reg_complete = false;
|
||||
struct ompi_event handler;
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Local Function Prototypes
|
||||
*
|
||||
********************************************************************/
|
||||
static void blk_waitpid_cb(pid_t wpid, int status, void *data);
|
||||
static pending_pids_item_t* find_pending_pid(pid_t pid, bool create);
|
||||
static registered_cb_item_t* find_waiting_cb(pid_t pid, bool create);
|
||||
static void do_waitall(int options);
|
||||
static void trigger_callback(registered_cb_item_t *cb, pending_pids_item_t *pending);
|
||||
static int register_callback(pid_t pid, ompi_rte_wait_fn_t callback,
|
||||
void *data);
|
||||
static void register_sig_event(void);
|
||||
void ompi_rte_wait_signal_callback(int fd, short event, void *arg);
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Interface Functions
|
||||
*
|
||||
********************************************************************/
|
||||
int
|
||||
ompi_rte_wait_init(void)
|
||||
{
|
||||
OBJ_CONSTRUCT(&mutex, ompi_mutex_t);
|
||||
OBJ_CONSTRUCT(&pending_pids, ompi_list_t);
|
||||
OBJ_CONSTRUCT(®istered_cb, ompi_list_t);
|
||||
OBJ_CONSTRUCT(&ev_reg_mutex, ompi_mutex_t);
|
||||
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
ompi_rte_wait_finalize(void)
|
||||
{
|
||||
ompi_list_item_t *item;
|
||||
|
||||
OMPI_THREAD_LOCK(&mutex);
|
||||
ompi_event_del(&handler);
|
||||
OMPI_THREAD_UNLOCK(&mutex);
|
||||
|
||||
/* clear out the lists */
|
||||
while (NULL != (item = ompi_list_remove_first(&pending_pids))) {
|
||||
OBJ_RELEASE(item);
|
||||
}
|
||||
while (NULL != (item = ompi_list_remove_first(®istered_cb))) {
|
||||
OBJ_RELEASE(item);
|
||||
}
|
||||
|
||||
OBJ_DESTRUCT(&mutex);
|
||||
OBJ_DESTRUCT(&pending_pids);
|
||||
OBJ_DESTRUCT(®istered_cb);
|
||||
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
pid_t
|
||||
ompi_rte_waitpid(pid_t wpid, int *status, int options)
|
||||
{
|
||||
pending_pids_item_t *pending = NULL;
|
||||
blk_waitpid_data_t *data = NULL;
|
||||
ompi_mutex_t *cond_mutex;
|
||||
struct timespec spintime;
|
||||
pid_t ret;
|
||||
|
||||
if ((wpid <= 0) || (0 != (options & WUNTRACED))) {
|
||||
errno = OMPI_ERR_NOT_IMPLEMENTED;
|
||||
return (pid_t) -1;
|
||||
}
|
||||
|
||||
if (! ev_reg_complete) register_sig_event();
|
||||
|
||||
OMPI_THREAD_LOCK(&mutex);
|
||||
|
||||
do_waitall(options);
|
||||
pending = find_pending_pid(wpid, false);
|
||||
if (NULL != pending) {
|
||||
*status = pending->status;
|
||||
ret = pending->pid;
|
||||
ompi_list_remove_item(&pending_pids, (ompi_list_item_t*) pending);
|
||||
OBJ_RELEASE(pending);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (0 == (options & WNOHANG)) {
|
||||
/* blocking - create a blk_waitpid_data_t, register the
|
||||
callback with it, and wait for the trigger. Hold mutex
|
||||
until after we register so that waitpid isn't called before
|
||||
the callback is registered. There is a race condition
|
||||
between starting to sit in the condition_wait and the
|
||||
callback being triggered, so poll for completion on the
|
||||
event just in case. Also, if we have pthreads but they
|
||||
aren't active, we won't progress in cond_timedwait, so do
|
||||
it here. */
|
||||
data = OBJ_NEW(blk_waitpid_data_t);
|
||||
if (NULL == data) {
|
||||
ret = -1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
cond_mutex = OBJ_NEW(ompi_mutex_t);
|
||||
if (NULL == cond_mutex) {
|
||||
ret = -1;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
/* must use mutex_lock to match what is in the condition_wait */
|
||||
ompi_mutex_lock(cond_mutex);
|
||||
register_callback(wpid, blk_waitpid_cb, data);
|
||||
OMPI_THREAD_UNLOCK(&mutex);
|
||||
|
||||
while (0 == data->done) {
|
||||
spintime.tv_sec = 0;
|
||||
spintime.tv_nsec = 1 * 1000 * 1000; /* 1 milliseconds */
|
||||
ompi_condition_timedwait(data->cond,
|
||||
cond_mutex,
|
||||
&spintime);
|
||||
ompi_progress();
|
||||
}
|
||||
ompi_mutex_unlock(cond_mutex);
|
||||
|
||||
ret = wpid;
|
||||
*status = data->status;
|
||||
|
||||
OBJ_RELEASE(data);
|
||||
OBJ_RELEASE(cond_mutex);
|
||||
|
||||
} else {
|
||||
/* non-blocking - return what waitpid would */
|
||||
ret = waitpid(wpid, status, options);
|
||||
}
|
||||
|
||||
cleanup:
|
||||
OMPI_THREAD_UNLOCK(&mutex);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
ompi_rte_wait_cb(pid_t wpid, ompi_rte_wait_fn_t callback, void *data)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (wpid <= 0) return OMPI_ERR_NOT_IMPLEMENTED;
|
||||
if (NULL == callback) return OMPI_ERR_BAD_PARAM;
|
||||
|
||||
if (! ev_reg_complete) register_sig_event();
|
||||
|
||||
OMPI_THREAD_LOCK(&mutex);
|
||||
ret = register_callback(wpid, callback, data);
|
||||
OMPI_THREAD_UNLOCK(&mutex);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
ompi_rte_wait_signal_callback(int fd, short event, void *arg)
|
||||
{
|
||||
struct ompi_event *signal = arg;
|
||||
|
||||
if (SIGCHLD != OMPI_EVENT_SIGNAL(signal)) return;
|
||||
|
||||
OMPI_THREAD_LOCK(&mutex);
|
||||
do_waitall(0);
|
||||
OMPI_THREAD_UNLOCK(&mutex);
|
||||
}
|
||||
|
||||
|
||||
/*********************************************************************
|
||||
*
|
||||
* Local Functions
|
||||
*
|
||||
* None of these functions should lock mutex. All but blk_waitpid_cb
|
||||
* should only be called if the mutex is already locked.
|
||||
*
|
||||
********************************************************************/
|
||||
static void
|
||||
blk_waitpid_cb(pid_t wpid, int status, void *data)
|
||||
{
|
||||
blk_waitpid_data_t *wp_data = (blk_waitpid_data_t*) data;
|
||||
|
||||
wp_data->status = status;
|
||||
wp_data->done = 1;
|
||||
ompi_condition_broadcast(wp_data->cond);
|
||||
}
|
||||
|
||||
|
||||
/* -1 will return the first available pid */
|
||||
static pending_pids_item_t *
|
||||
find_pending_pid(pid_t pid, bool create)
|
||||
{
|
||||
ompi_list_item_t *item;
|
||||
pending_pids_item_t *pending;
|
||||
|
||||
for (item = ompi_list_get_first(&pending_pids) ;
|
||||
item != ompi_list_get_end(&pending_pids) ;
|
||||
item = ompi_list_get_next(item)) {
|
||||
pending = (pending_pids_item_t*) item;
|
||||
|
||||
if (pending->pid == pid || -1 == pid) {
|
||||
return pending;
|
||||
}
|
||||
}
|
||||
|
||||
if (create) {
|
||||
pending = OBJ_NEW(pending_pids_item_t);
|
||||
if (NULL == pending) return NULL;
|
||||
|
||||
pending->pid = pid;
|
||||
pending->status = 0;
|
||||
ompi_list_append(&pending_pids, (ompi_list_item_t*) pending);
|
||||
return pending;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/* pid must be positive */
|
||||
static registered_cb_item_t *
|
||||
find_waiting_cb(pid_t pid, bool create)
|
||||
{
|
||||
ompi_list_item_t *item = NULL;
|
||||
registered_cb_item_t *reg_cb = NULL;
|
||||
|
||||
for (item = ompi_list_get_first(®istered_cb) ;
|
||||
item != ompi_list_get_end(®istered_cb) ;
|
||||
item = ompi_list_get_next(item)) {
|
||||
reg_cb = (registered_cb_item_t*) item;
|
||||
|
||||
if (reg_cb->pid == pid) {
|
||||
return reg_cb;
|
||||
}
|
||||
}
|
||||
|
||||
if (create) {
|
||||
reg_cb = OBJ_NEW(registered_cb_item_t);
|
||||
if (NULL == reg_cb) return NULL;
|
||||
|
||||
reg_cb->pid = pid;
|
||||
reg_cb->callback = NULL;
|
||||
reg_cb->data = NULL;
|
||||
ompi_list_append(®istered_cb, (ompi_list_item_t*) reg_cb);
|
||||
return reg_cb;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
do_waitall(int options)
|
||||
{
|
||||
pid_t ret;
|
||||
int status;
|
||||
pending_pids_item_t *pending;
|
||||
registered_cb_item_t *reg_cb;
|
||||
|
||||
while (1) {
|
||||
ret = waitpid(-1, &status, WNOHANG | options);
|
||||
if (-1 == ret && EINTR == errno) continue;
|
||||
if (ret <= 0) break;
|
||||
|
||||
pending = OBJ_NEW(pending_pids_item_t);
|
||||
|
||||
pending->pid = ret;
|
||||
pending->status = status;
|
||||
ompi_list_append(&pending_pids, (ompi_list_item_t*) pending);
|
||||
|
||||
reg_cb = find_waiting_cb(ret, false);
|
||||
if (NULL == reg_cb) continue;
|
||||
trigger_callback(reg_cb, pending);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
trigger_callback(registered_cb_item_t *cb, pending_pids_item_t *pending)
|
||||
{
|
||||
assert(cb->pid == pending->pid);
|
||||
|
||||
cb->callback(cb->pid, pending->status, cb->data);
|
||||
ompi_list_remove_item(&pending_pids, (ompi_list_item_t*) pending);
|
||||
ompi_list_remove_item(®istered_cb, (ompi_list_item_t*) cb);
|
||||
}
|
||||
|
||||
|
||||
static int
|
||||
register_callback(pid_t pid, ompi_rte_wait_fn_t callback, void *data)
|
||||
{
|
||||
registered_cb_item_t *reg_cb;
|
||||
pending_pids_item_t *pending;
|
||||
|
||||
/* register the callback */
|
||||
reg_cb = find_waiting_cb(pid, true);
|
||||
if (NULL == reg_cb) return OMPI_ERROR;
|
||||
if (NULL != reg_cb->callback) return OMPI_EXISTS;
|
||||
|
||||
reg_cb->pid = pid;
|
||||
reg_cb->callback = callback;
|
||||
reg_cb->data = data;
|
||||
|
||||
/* make sure we shouldn't trigger right now */
|
||||
pending = find_pending_pid(pid, false);
|
||||
if (NULL != pending) {
|
||||
trigger_callback(reg_cb, pending);
|
||||
}
|
||||
|
||||
return OMPI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
register_sig_event(void)
|
||||
{
|
||||
OMPI_THREAD_LOCK(&ev_reg_mutex);
|
||||
|
||||
if (true == ev_reg_complete) goto cleanup;
|
||||
ev_reg_complete = true;
|
||||
|
||||
ompi_event_set(&handler, SIGCHLD, OMPI_EV_SIGNAL|OMPI_EV_PERSIST,
|
||||
ompi_rte_wait_signal_callback,
|
||||
&handler);
|
||||
|
||||
ompi_event_add(&handler, NULL);
|
||||
|
||||
/* it seems that the event is only added to the queue at the next
|
||||
progress call. So push the event library (might as well push
|
||||
the pml/ptl at the same time) */
|
||||
ompi_progress();
|
||||
|
||||
cleanup:
|
||||
OMPI_THREAD_UNLOCK(&ev_reg_mutex);
|
||||
}
|
69
src/runtime/ompi_rte_wait.h
Обычный файл
69
src/runtime/ompi_rte_wait.h
Обычный файл
@ -0,0 +1,69 @@
|
||||
/*
|
||||
* $HEADER$
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
*
|
||||
* Interface for waitpid / async notification of child death with the
|
||||
* libevent runtime system.
|
||||
*/
|
||||
#ifndef OMPI_RTE_WAIT_H
|
||||
#define OMPI_RTE_WAIT_H
|
||||
|
||||
#include "ompi_config.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
/** typedef for callback function used in \c ompi_rte_wait_cb */
|
||||
typedef void (*ompi_rte_wait_fn_t)(pid_t wpid, int status, void *data);
|
||||
|
||||
|
||||
/**
|
||||
* Wait for process terminiation
|
||||
*
|
||||
* Similar to \c waitpid, \c ompi_rte_waitpid utilizes the run-time
|
||||
* event library for process terminiation notification. The \c
|
||||
* WUNTRACED option is not supported, but the \c WNOHANG option is
|
||||
* supported.
|
||||
*
|
||||
* \note A \c wpid value of \c -1 is not currently supported and will
|
||||
* return an error.
|
||||
*/
|
||||
pid_t ompi_rte_waitpid(pid_t wpid, int *status, int options);
|
||||
|
||||
|
||||
/**
|
||||
* Register a callback for process termination
|
||||
*
|
||||
* Register a callback for notification when \c wpid causes a SIGCHLD.
|
||||
* \c waitpid() will have already been called on the process at this
|
||||
* time.
|
||||
*
|
||||
* If a thread is already blocked in \c ompi_rte_waitpid for \c wpid,
|
||||
* this function will return \c OMPI_ERR_EXISTS. It is legal for
|
||||
* multiple callbacks to be registered for a single \c wpid.
|
||||
*
|
||||
* \warning It is not legal for \c wpid to be -1 when registering a
|
||||
* callback.
|
||||
*/
|
||||
int ompi_rte_wait_cb(pid_t wpid, ompi_rte_wait_fn_t callback, void *data);
|
||||
|
||||
|
||||
/**
|
||||
* \internal
|
||||
*
|
||||
* Initialize the wait system (allocate mutexes, etc.)
|
||||
*/
|
||||
int ompi_rte_wait_init(void);
|
||||
|
||||
|
||||
/**
|
||||
* \internal
|
||||
*
|
||||
* Finalize the wait system (deallocate mutexes, etc.)
|
||||
*/
|
||||
int ompi_rte_wait_finalize(void);
|
||||
|
||||
|
||||
#endif
|
@ -4,7 +4,7 @@
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
|
||||
SUBDIRS = support class util threads mca
|
||||
SUBDIRS = support class util threads mca rte
|
||||
# JMS Temporary hack to make "make dist" work. The directories mentioned
|
||||
# here will eventually moved into SUBDIRS.
|
||||
DIST_SUBDIRS = $(SUBDIRS) include
|
||||
|
@ -5,31 +5,15 @@
|
||||
|
||||
include $(top_srcdir)/config/Makefile.options
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir)/test/support \
|
||||
-DLAM_PREFIX="\"$(prefix)\"" \
|
||||
-DLAM_BINDIR="\"$(bindir)\"" \
|
||||
-DLAM_LIBDIR="\"$(libdir)\"" \
|
||||
-DLAM_INCDIR="\"$(includedir)\"" \
|
||||
-DLAM_PKGLIBDIR="\"$(pkglibdir)\"" \
|
||||
-DLAM_SYSCONFDIR="\"$(sysconfdir)\"" \
|
||||
-DLAM_CONFIGURE_USER="\"@LAM_CONFIGURE_USER@\"" \
|
||||
-DLAM_CONFIGURE_HOST="\"@LAM_CONFIGURE_HOST@\"" \
|
||||
-DLAM_CONFIGURE_DATE="\"@LAM_CONFIGURE_DATE@\""
|
||||
-I$(top_srcdir)/test/support
|
||||
|
||||
bin_PROGRAMS = \
|
||||
openmpi
|
||||
sigchld
|
||||
|
||||
openmpi_SOURCES = \
|
||||
ompi_session_dir.c
|
||||
|
||||
openmpi_LDADD = \
|
||||
$(top_builddir)/src/mca/pcm/base/pcm_base_open.lo \
|
||||
$(top_builddir)/test/support/libsupport.la \
|
||||
$(top_builddir)/src/libmpi.la
|
||||
|
||||
openmpi_DFLAGS = $(LIBMPI_EXTRA_LDFLAGS) $(LIBLAM_EXTRA_LDFLAGS)
|
||||
openmpi_DEPENDENCIES = $(libs) \
|
||||
$(openmpi_LDADD)
|
||||
|
||||
clean-local:
|
||||
test -z "$(LAM_CXX_TEMPLATE_REPOSITORY)" || $(RM) -rf $(LAM_CXX_TEMPLATE_REPOSITORY)
|
||||
sigchld_SOURCES = \
|
||||
sigchld.c
|
||||
sigchld_LDADD = \
|
||||
$(top_builddir)/src/libmpi.la
|
||||
sigchld_LDFLAGS = $(LIBMPI_EXTRA_LDFLAGS)
|
||||
sigchld_DEPENDENCIES = $(sigchld_LDADD)
|
||||
|
69
test/rte/sigchld.c
Обычный файл
69
test/rte/sigchld.c
Обычный файл
@ -0,0 +1,69 @@
|
||||
/*
|
||||
* $HEADER$
|
||||
*/
|
||||
|
||||
#include "mpi.h"
|
||||
#include "runtime/ompi_rte_wait.h"
|
||||
#include "runtime/ompi_progress.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int count = 0;
|
||||
|
||||
static void
|
||||
callback(pid_t pid, int status, void *data)
|
||||
{
|
||||
printf("callback for %d, %d\n", pid, status);
|
||||
count--;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
main(int argc, char *argv[])
|
||||
{
|
||||
pid_t pid, ret;
|
||||
int status = -1;
|
||||
|
||||
MPI_Init(&argc, &argv);
|
||||
ompi_rte_wait_init();
|
||||
|
||||
pid = fork();
|
||||
if (pid > 0) {
|
||||
count++;
|
||||
ompi_rte_wait_cb(pid, callback, NULL);
|
||||
} else {
|
||||
sleep(10);
|
||||
printf("pid %d exiting\n", getpid());
|
||||
exit(0);
|
||||
}
|
||||
|
||||
pid = fork();
|
||||
if (pid > 0) {
|
||||
ret = ompi_rte_waitpid(pid, &status, 0);
|
||||
printf("pid %d waitpid, status %d\n", ret, status);
|
||||
} else {
|
||||
sleep(5);
|
||||
printf("pid %d exiting\n", getpid());
|
||||
exit(0);
|
||||
}
|
||||
|
||||
pid = fork();
|
||||
if (pid > 0) {
|
||||
count++;
|
||||
ompi_rte_wait_cb(pid, callback, NULL);
|
||||
} else {
|
||||
printf("pid %d exiting\n", getpid());
|
||||
exit(0);
|
||||
}
|
||||
|
||||
while (count > 0) { ompi_progress(); }
|
||||
|
||||
ompi_rte_wait_finalize();
|
||||
MPI_Finalize();
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
Загрузка…
x
Ссылка в новой задаче
Block a user