- Jan 14, 2012
-
-
Danny Auble authored
-
- Jan 13, 2012
-
-
Morris Jette authored
-
Mark A. Grondona authored
Add test7.15 to test for any signals blocked by default in job tasks.
-
Mark A. Grondona authored
It was found that slurmstepd was intermittently leaving SIGPIPE blocked when launching user tasks. This may have something to do with the fact that the xsignal_unblock() call in _fork_all_tasks() is referencing an extern array (nominally this should have unblocked SIGPIPE), but I didn't spend the time to fully track this issue down. Instead, I figured there is probably no reason we would _not_ want to unblock *all* signals, so this patch does that. Before this change, the following program fails every once in awhile: #include <stdio.h> #include <signal.h> int main (int ac, char **av) { int i, rc = 0; struct sigaction act; for (i = 1; i < SIGRTMAX; i++) { sigaction (i, NULL, &act); if (act.sa_handler == SIG_DFL) continue; fprintf (stderr, "Signal %d appears to be ignored!\n", i); rc = 1; } return (rc); } with: srun -N1 -n1 ./test Signal 13 appears to be ignored! after the change, the program succeeds.
-
Danny Auble authored
number.
-
Morris Jette authored
-
Morris Jette authored
-
Phil Eckert authored
This new sbatch option allows the user to specify a file containing environment variables to be used in the jobs execution environment.
-
Morris Jette authored
-
Morris Jette authored
Let operators see reservation data even if "PrivateData=reservations" flag is set in slurm.conf. Patch from Don Albert, Bull.
-
- Jan 12, 2012
-
-
Morris Jette authored
-
- Jan 11, 2012
-
-
Morris Jette authored
Make slurmd -C output print "CPUs=" rather than "Procs=" to match current slurm.conf standard
-
Morris Jette authored
-
Morris Jette authored
It used to be listed as "--switch=" rather than "--switches="
-
- Jan 09, 2012
-
-
Morris Jette authored
-
Morris Jette authored
-
Morris Jette authored
-
Morris Jette authored
Fix bug in srun --multi-prog configuration file to avoid printing duplicate record error when "*" is used at the end of the file for the task ID. It means all task IDs not otherwise identified.
-
Morris Jette authored
-
Morris Jette authored
Fix race condition where sbcast command can result in deadlock of slurmd daemon. Patch by Don Albert, Bull.
-
- Jan 07, 2012
-
-
Morris Jette authored
-
- Jan 04, 2012
-
-
jette authored
Made squeue -n and -w options more consistent with salloc, sbatch, srun, and scancel. Patch by Don Lipari, LLNL.
-
- Dec 29, 2011
-
-
Danny Auble authored
-
- Dec 28, 2011
-
-
Danny Auble authored
to be given the entire dimension we switch the request to TORUS.
-
Danny Auble authored
so you can specify any connection type you would like (TORUS or MESH) as the default in dynamic mode. Previously it always defaulted to TORUS.
-
Danny Auble authored
-
Danny Auble authored
-
Danny Auble authored
-
Danny Auble authored
-
Danny Auble authored
taken out of error.
-
Danny Auble authored
-
Danny Auble authored
midplane would run).
-
Danny Auble authored
-
Danny Auble authored
in a midplane.
-
Morris Jette authored
-
Morris Jette authored
-
Morris Jette authored
-
Morris Jette authored
Add #define for statistic parameters. Add version number to statistics un/pack functions. Only let SLURM administrators reset the statistic counters.
-
Danny Auble authored
-
Danny Auble authored
-