1
1

a bit more verbosity for the fun of it

This commit was SVN r17758.
Этот коммит содержится в:
Josh Hursey 2008-03-06 14:04:25 +00:00
родитель f61c2333c0
Коммит 0b4d9a12ce
2 изменённых файлов: 8 добавлений и 1 удалений

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

@ -94,7 +94,7 @@ int app_coord_init() {
asprintf(&app_comm_pipe_r, "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_R, tmp_pid); asprintf(&app_comm_pipe_r, "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_R, tmp_pid);
asprintf(&app_comm_pipe_w, "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_W, tmp_pid); asprintf(&app_comm_pipe_w, "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_W, tmp_pid);
OPAL_OUTPUT_VERBOSE((15, opal_cr_output, OPAL_OUTPUT_VERBOSE((15, mca_snapc_full_component.super.output_handle,
"app) Named Pipes (%s) (%s)", "app) Named Pipes (%s) (%s)",
app_comm_pipe_r, app_comm_pipe_w)); app_comm_pipe_r, app_comm_pipe_w));
@ -144,6 +144,9 @@ int app_coord_finalize() {
static void snapc_full_app_signal_handler (int signo) static void snapc_full_app_signal_handler (int signo)
{ {
if( opal_cr_entry_point_signal != signo ) { if( opal_cr_entry_point_signal != signo ) {
OPAL_OUTPUT_VERBOSE((1, mca_snapc_full_component.super.output_handle,
"App) signal_handler: Received unknown signal %d",
signo));
/* Not our signal */ /* Not our signal */
return; return;
} }

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

@ -1123,6 +1123,10 @@ static int snapc_full_local_start_checkpoint_all(size_t ckpt_state)
asprintf(&(vpid_snapshot->comm_pipe_r), "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_W, tmp_pid); asprintf(&(vpid_snapshot->comm_pipe_r), "%s/%s.%s", opal_cr_pipe_dir, OPAL_CR_NAMED_PROG_W, tmp_pid);
} }
OPAL_OUTPUT_VERBOSE((20, mca_snapc_full_component.super.output_handle,
"Local) Signal process (%d)\n",
(int) vpid_snapshot->super.process_pid));
/* /*
* Signal the application * Signal the application
*/ */