don't write the pbs jobid here, do it in send.py so we know

what it is sooner
Don't handle sigstop since you're not allowed to.

util/pbs/send.py:
    write the pbs jobid here in send.py so we know what it is sooner

--HG--
extra : convert_revision : 93292d046cb4b628031e0e57e39eb4470b598ed8
This commit is contained in:
Nathan Binkert 2005-10-12 13:01:55 -04:00
parent 0f1b066b6b
commit 6bc057139d
2 changed files with 2 additions and 3 deletions

View file

@ -168,8 +168,6 @@ if __name__ == '__main__':
started = date()
jobdir.echofile('.running', started)
jobdir.rmfile('.queued')
jobdir.echofile('.pbs_jobid', pbs_jobid)
jobdir.echofile('.pbs_jobname', pbs_jobid)
jobdir.echofile('.host', host)
jobdir.setstatus('running on %s on %s' % (host, started))
@ -219,7 +217,6 @@ if __name__ == '__main__':
signal.signal(signal.SIGINT, handler)
signal.signal(signal.SIGQUIT, handler)
signal.signal(signal.SIGTERM, handler)
signal.signal(signal.SIGSTOP, handler)
signal.signal(signal.SIGCONT, handler)
signal.signal(signal.SIGUSR1, handler)
signal.signal(signal.SIGUSR2, handler)

View file

@ -266,6 +266,8 @@ for job in joblist:
print 'PBS Jobid: %s' % jobid
namehack.setname(jobid, job.name)
queued = date()
jobdir.echofile('.pbs_jobid', jobid)
jobdir.echofile('.pbs_jobname', job.name)
jobdir.echofile('.queued', queued)
jobdir.setstatus('queued on %s' % queued)
else: