Changeset 276 for trunk/src/pbs_2.1.py


Ignore:
Timestamp:
02/14/12 10:16:00 (12 years ago)
Author:
bas
Message:

Added new generated swig files to fix tabs problem. see #24

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/pbs_2.1.py

    r268 r276  
    686686#
    687687default_linux_res = [   
    688         "availmem",     # available memory size in KB
    689         "ideal_load",   # static ideal_load value
    690         "loadave",      # the current load average
    691         "max_load",     # static max_load value
    692         "ncpus",        # number of cpus
    693         "physmem",      # physical memory size in KB
    694         "resi",         # resident memory size for a pid or session in KB
    695         "totmem",       # total memory size in KB
    696         "walltime",     # wall clock time for a pid
     688    "availmem",     # available memory size in KB
     689    "ideal_load",       # static ideal_load value
     690    "loadave",      # the current load average
     691    "max_load",     # static max_load value
     692    "ncpus",        # number of cpus
     693    "physmem",      # physical memory size in KB
     694    "resi",                 # resident memory size for a pid or session in KB
     695    "totmem",       # total memory size in KB
     696    "walltime",     # wall clock time for a pid
    697697]
    698698
     
    700700#
    701701default_irix6_res = [   
    702         "availmem",     # available memory size in KB
    703         "loadave",      # the current load average
    704         "ncpus",        # number of cpus
    705         "physmem",      # physical memory size in KB
    706         "resi",         # resident memory size for a pid or session in KB
    707         "walltime",     # wall clock time for a pid
    708         "quota",        # quota information (sizes in KB)
     702    "availmem", # available memory size in KB
     703    "loadave",      # the current load average
     704    "ncpus",        # number of cpus
     705    "physmem",      # physical memory size in KB
     706    "resi",             # resident memory size for a pid or session in KB
     707    "walltime", # wall clock time for a pid
     708    "quota",    # quota information (sizes in KB)
    709709]
    710710
    711711default_mom_res = [   
    712         "arch",         # the architecture of the machine
    713         "uname",        # the architecture of the machine
    714         "cput",         # cpu time for a pid or session
    715         "idletime",     # seconds of idle time
    716         "mem",          # memory size for a pid or session in KB
    717         "sessions",     # list of sessions in the system
    718         "pids",         # list of pids in a session
    719         "nsessions",    # number of sessions in the system
    720         "nusers",       # number of users in the system
    721         "size",         # size of a file or filesystem
    722         "host",         # Name  of host on which job should be run
    723         "nodes",        # Number and/or type of nodes to be reserved for exclusive use by the job
    724         "other",        # Allows a  user  to  specify  site  specific  information
    725         "software",     # Allows a user to specify software required by the job
     712    "arch",             # the architecture of the machine
     713    "uname",    # the architecture of the machine
     714    "cput",             # cpu time for a pid or session
     715    "idletime", # seconds of idle time
     716    "mem",              # memory size for a pid or session in KB
     717    "sessions", # list of sessions in the system
     718    "pids",         # list of pids in a session
     719    "nsessions",        # number of sessions in the system
     720    "nusers",   # number of users in the system
     721    "size",             # size of a file or filesystem
     722    "host",             # Name  of host on which job should be run
     723    "nodes",    # Number and/or type of nodes to be reserved for exclusive use by the job
     724    "other",    # Allows a  user  to  specify  site  specific  information
     725    "software", # Allows a user to specify software required by the job
    726726]
    727727
     
    741741  key = string.strip(l[0])
    742742  if len(l) > 2:
    743         val = string.strip( '='.join(l[1:]) )
     743    val = string.strip( '='.join(l[1:]) )
    744744  else:
    745         val = string.strip(l[1])
     745    val = string.strip(l[1])
    746746
    747747  key = string.strip(key)
Note: See TracChangeset for help on using the changeset viewer.