Changes between Version 3 and Version 4 of TorqueUsage


Ignore:
Timestamp:
09/07/06 10:53:07 (18 years ago)
Author:
bas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TorqueUsage

    v3 v4  
    11[[ShowPath]]
    2 
     2[[PageOutline]]
    33= Usage =
    44
     
    99== PBS python module ==
    1010
    11 As already mentioned this module use the same funcions names as the C-library.
     11As already mentioned this module use the same funcions names as the C-library. So you can use the ''man-pages'' that are include
     12in Torque software to see which arguments are required and returned. Keep in mind that the following C-types will be converted to
     13Python-type:
     14  * C linked list are converted to python list and vica versa
     15  * If C-struct is required then first allocate storage for it. The mostly used structs are:
     16    * struct attr *    --> pbs.new_attr(2), allocates a list of size 2 of type attr
     17    * struct attropl * --> pbs.new_attropl(2), allocates a list of size 2 of type attropl
     18
     19How to use the pbs_python libary:
     20  * [wiki:TorqueUsage/Interactive Interactive]
    1221
    1322== PBSQuery python module ==