1
1

non-persistent signal behavior isn't quite right, so use the proper SIGNAL

macros and deregister at the appropriate time.

This commit was SVN r7293.
Этот коммит содержится в:
Brian Barrett 2005-09-10 23:22:37 +00:00
родитель c4731285ee
Коммит 1fcf18c211

Просмотреть файл

@ -350,12 +350,12 @@ int orterun(int argc, char *argv[])
/* Prep to start the application */
opal_event_set(&term_handler, SIGTERM, OPAL_EV_SIGNAL,
opal_signal_set(&term_handler, SIGTERM,
signal_callback, NULL);
opal_event_add(&term_handler, NULL);
opal_event_set(&int_handler, SIGINT, OPAL_EV_SIGNAL,
opal_signal_add(&term_handler, NULL);
opal_signal_set(&int_handler, SIGINT,
signal_callback, NULL);
opal_event_add(&int_handler, NULL);
opal_signal_add(&int_handler, NULL);
orte_totalview_init_before_spawn();
@ -582,6 +582,10 @@ static void exit_callback(int fd, short event, void *arg)
opal_show_help("help-orterun.txt", "orterun:abnormal-exit",
true, orterun_basename, orterun_basename);
/* Remove the TERM and INT signal handlers */
opal_signal_del(&term_handler);
opal_signal_del(&int_handler);
/* Trigger the normal exit conditions */
orterun_globals.exit = true;