Changes between Initial Version and Version 1 of TorqueUsage/Functions/Pbs_movejob


Ignore:
Timestamp:
09/18/06 16:14:42 (18 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TorqueUsage/Functions/Pbs_movejob

    v1 v1  
     1[[ShowPath]]
     2
     3= PBS_MOVEJOB =
     4Issue  a  batch request to move a job to a new destination.  The job is removed from the present queue and instantiated in a new queue.
     5
     6{{{
     7result = pbs.pbs_movejob(c, job_id, destination, extend)
     8}}}
     9
     10== In ==
     11
     12c::
     13 Connection id.
     14
     15job_id::
     16 Identifies which job is to be moved; it is  specified in the form: {{{sequence_number.server}}}
     17
     18destination::
     19 Specifies the new destination for the job. It is specified as: {{{[queue][@server]}}}.  If {{{destination='NULL'}}}, the destination will be the default queue at the current server.  If destination specifies a queue but not a server, the        destination will be the named queue at the current server.  If destination specifies a server but not a queue, the destination  will be the default  queue  at  the  named server.  If destination specifies both a queue and a server, the destination is that queue at that server.
     20
     21extend::
     22  The parameter, extend, is reserved for implementation defined extensions. For now extend="NULL"
     23
     24== Out ==
     25 If non-zero an error has occured
     26
     27
     28
     29