~ubuntu-branches/ubuntu/vivid/slurm-llnl/vivid

« back to all changes in this revision

Viewing changes to contribs/perlapi/libslurm-perl/alloc.c

  • Committer: Bazaar Package Importer
  • Author(s): Gennaro Oliva
  • Date: 2009-09-24 23:28:15 UTC
  • mfrom: (1.1.11 upstream) (3.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090924232815-enh65jn32q1ebg07
Tags: 2.0.5-1
* New upstream release 
* Changed dependecy from lib-mysqlclient15 to lib-mysqlclient 
* Added Default-Start for runlevel 2 and 4 and $remote_fs requirement in
  init.d scripts (Closes: #541252)
* Postinst checks for wrong runlevels 2 and 4 links
* Upgraded to standard version 3.8.3
* Add lintian overrides for missing slurm-llnl-configurator.html in doc
  base registration
* modified postrm scripts to ignore pkill return value in order to avoid
  postrm failure when no slurm process is running
* Checking for slurmctld.pid before cancelling running and pending
  jobs during package removal 

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                }
54
54
        }
55
55
        FETCH_FIELD(hv, job_desc_msg, features, charp, FALSE);
 
56
        FETCH_FIELD(hv, job_desc_msg, reservation, charp, FALSE);
56
57
        FETCH_FIELD(hv, job_desc_msg, immediate, uint16_t, FALSE);
57
58
        FETCH_FIELD(hv, job_desc_msg, job_id, uint32_t, FALSE);
58
59
        FETCH_FIELD(hv, job_desc_msg, name, charp, FALSE);
139
140
                avp = (AV*)SvRV(*svp);
140
141
                for(i = 0; i < SYSTEM_DIMENSIONS; i ++) {
141
142
                        if(! (svp = av_fetch(avp, i, FALSE))) {
142
 
                                Perl_warn(aTHX_ "geometry of dimension %s missing in job descriptor", i);
 
143
                                Perl_warn(aTHX_ "geometry of dimension %d missing in job descriptor", i);
143
144
                                free_job_desc_msg_memory(job_desc_msg);
144
145
                                return -1;
145
146
                        }