1. 14 Oct, 2013 3 commits
  2. 11 Oct, 2013 8 commits
  3. 10 Oct, 2013 1 commit
  4. 09 Oct, 2013 3 commits
  5. 08 Oct, 2013 2 commits
    • Morris Jette's avatar
      EpilogSlurmctld race condition/SEGV fix · ddaa9b55
      Morris Jette authored
      EpilogSlurmctld pthread is passed required arguments rather than a pointer
      to the job record, which under some conditions could be purged and result
      in an invalid memory reference.
      ddaa9b55
    • Morris Jette's avatar
      EpilogSlurmctld race condition/SEGV fix · 04f06338
      Morris Jette authored
      EpilogSlurmctld pthread is passed required arguments rather than a pointer
      to the job record, which under some conditions could be purged and result
      in an invalid memory reference.
      04f06338
  6. 07 Oct, 2013 2 commits
  7. 04 Oct, 2013 3 commits
  8. 03 Oct, 2013 9 commits
  9. 02 Oct, 2013 4 commits
  10. 01 Oct, 2013 5 commits
    • Morris Jette's avatar
      Modify qsub wrapper to match torque command · ea6e17e2
      Morris Jette authored
      just print the job ID rather than "Submitted batch job #"
      ea6e17e2
    • Eric Winter's avatar
      Corrections to qstat logic · ca049f08
      Eric Winter authored
      job CPU count not loaded correctly
      Partition time limit format wrong (minutes rather than hhmmss format).
      ca049f08
    • Eric Winter's avatar
      Add qalter command to torque package · b9a8aaf8
      Eric Winter authored
      b9a8aaf8
    • Eric Winter's avatar
      Added "qrerun" command to torque package · e7debfb3
      Eric Winter authored
      e7debfb3
    • Morris Jette's avatar
      Convert bitmap functions to use int32_t instead of int · 48e28e61
      Morris Jette authored
      Convert bitmap functions to use int32_t instead of int in data structures
      and function arguments. This is to reliably enable use of bitmaps containing
      up to 4 billion elements. Several data structures containing index values
      were also changed from data type int to int32_t:
      - Struct job_info / slurm_job_info_t: Changed exc_node_inx, node_inx, and
        req_node_inx from type int to type int32_t
      - job_step_info_t: Changed node_inx from type int to type int32_t
      - Struct partition_info / partition_info_t: Changed node_inx from type int
        to type int32_t
      - block_job_info_t: Changed cnode_inx from type int to type int32_t
      - block_info_t: Changed ionode_inx and mp_inx from type int to type int32_t
      - Struct reserve_info / reserve_info_t: Changed node_inx from type int to
        type int32_t
      48e28e61