IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 19421


Ignore:
Timestamp:
Sep 8, 2008, 2:09:25 PM (18 years ago)
Author:
Paul Price
Message:

Using the standard polling args.

Location:
trunk/ippTasks
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTasks/camera.pro

    r19406 r19421  
    7373
    7474  task.exec
     75    $run = camtool -pendingexp -limit 20
    7576    if ($DB:n == 0)
    7677      option DEFAULT
    77       command camtool -pendingexp -limit 20
    78       # echo command camtool -pendingexp -limit 20
    7978    else
    8079      # save the DB name for the exit tasks
    8180      option $DB:$camera_DB
    82       command camtool -pendingexp -limit 20 -dbname $DB:$camera_DB
    83       # echo command camtool -pendingexp -limit 20 -dbname $DB:$camera_DB
     81      $run = $run -dbname $DB:$camera_DB
    8482      $camera_DB ++
    8583      if ($camera_DB >= $DB:n) set camera_DB = 0
    8684    end
     85    add_poll_args run
     86    command $run
    8787  end
    8888
     
    204204
    205205  task.exec
     206    $run = camtool -pendingcleanuprun -limit 20
    206207    if ($DB:n == 0)
    207208      option DEFAULT
    208       command camtool -pendingcleanuprun -limit 20
    209209    else
    210210      # save the DB name for the exit tasks
    211211      option $DB:$camera_cleanup_DB
    212       command camtool -pendingcleanuprun -limit 20 -dbname $DB:$camera_cleanup_DB
     212      $run = $run -dbname $DB:$camera_cleanup_DB
    213213      $camera_cleanup_DB ++
    214214      if ($camera_cleanup_DB >= $DB:n) set camera_cleanup_DB = 0
    215215    end
     216    add_poll_args run
     217    command $run
    216218  end
    217219
  • trunk/ippTasks/chip.pro

    r19405 r19421  
    7676
    7777  task.exec
     78    $run = chiptool -pendingimfile -limit 20
    7879    if ($DB:n == 0)
    7980      option DEFAULT
    80       command chiptool -pendingimfile -limit 20
    8181    else
    8282      # save the DB name for the exit tasks
    8383      option $DB:$chip_DB
    84       command chiptool -pendingimfile -limit 20 -dbname $DB:$chip_DB
     84      $run = $run -dbname $DB:$chip_DB
    8585      $chip_DB ++
    8686      if ($chip_DB >= $DB:n) set chip_DB = 0
    8787    end
     88    add_poll_args run
     89    command $run
    8890  end
    8991
     
    205207
    206208  task.exec
     209    $run = chiptool -pendingcleanuprun -limit 20
    207210    if ($DB:n == 0)
    208211      option DEFAULT
    209       command chiptool -pendingcleanuprun -limit 20
    210212    else
    211213      # save the DB name for the exit tasks
    212214      option $DB:$chip_cleanup_DB
    213       command chiptool -pendingcleanuprun -limit 20 -dbname $DB:$chip_cleanup_DB
     215      $run = $run -dbname $DB:$chip_cleanup_DB
    214216      $chip_cleanup_DB ++
    215217      if ($chip_cleanup_DB >= $DB:n) set chip_cleanup_DB = 0
    216218    end
     219    add_poll_args run
     220    command $run
    217221  end
    218222
Note: See TracChangeset for help on using the changeset viewer.