92733b13d9
Modify the job_complete check so we don't kill jobs when a single proc was terminated by ORTE command via plm.terminate_procs Still dies gracefully with a ctrl-c, and behaves as before when using plm.terminate_job This commit was SVN r22227.
19 строки
191 B
C
19 строки
191 B
C
/* -*- C -*-
|
|
*
|
|
* $HEADER$
|
|
*
|
|
* A program that just segfaults
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
|
|
double pi;
|
|
char *dum=NULL;
|
|
|
|
pi = (double)*dum;
|
|
|
|
}
|