Changeset 276 for trunk/src/pbs_2.4.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.4.py

    r268 r276  
    718718#
    719719default_linux_res = [   
    720         "availmem",     # available memory size in KB
    721         "ideal_load",   # static ideal_load value
    722         "loadave",      # the current load average
    723         "max_load",     # static max_load value
    724         "ncpus",        # number of cpus
    725         "physmem",      # physical memory size in KB
    726         "resi",         # resident memory size for a pid or session in KB
    727         "totmem",       # total memory size in KB
    728         "walltime",     # wall clock time for a pid
     720    "availmem",     # available memory size in KB
     721    "ideal_load",       # static ideal_load value
     722    "loadave",      # the current load average
     723    "max_load",     # static max_load value
     724    "ncpus",        # number of cpus
     725    "physmem",      # physical memory size in KB
     726    "resi",                 # resident memory size for a pid or session in KB
     727    "totmem",       # total memory size in KB
     728    "walltime",     # wall clock time for a pid
    729729]
    730730
     
    732732#
    733733default_irix6_res = [   
    734         "availmem",     # available memory size in KB
    735         "loadave",      # the current load average
    736         "ncpus",        # number of cpus
    737         "physmem",      # physical memory size in KB
    738         "resi",         # resident memory size for a pid or session in KB
    739         "walltime",     # wall clock time for a pid
    740         "quota",        # quota information (sizes in KB)
     734    "availmem", # available memory size in KB
     735    "loadave",      # the current load average
     736    "ncpus",        # number of cpus
     737    "physmem",      # physical memory size in KB
     738    "resi",             # resident memory size for a pid or session in KB
     739    "walltime", # wall clock time for a pid
     740    "quota",    # quota information (sizes in KB)
    741741]
    742742
    743743default_mom_res = [   
    744         "arch",         # the architecture of the machine
    745         "uname",        # the architecture of the machine
    746         "cput",         # cpu time for a pid or session
    747         "idletime",     # seconds of idle time
    748         "mem",          # memory size for a pid or session in KB
    749         "sessions",     # list of sessions in the system
    750         "pids",         # list of pids in a session
    751         "nsessions",    # number of sessions in the system
    752         "nusers",       # number of users in the system
    753         "size",         # size of a file or filesystem
    754         "host",         # Name  of host on which job should be run
    755         "nodes",        # Number and/or type of nodes to be reserved for exclusive use by the job
    756         "other",        # Allows a  user  to  specify  site  specific  information
    757         "software",     # Allows a user to specify software required by the job
     744    "arch",             # the architecture of the machine
     745    "uname",    # the architecture of the machine
     746    "cput",             # cpu time for a pid or session
     747    "idletime", # seconds of idle time
     748    "mem",              # memory size for a pid or session in KB
     749    "sessions", # list of sessions in the system
     750    "pids",         # list of pids in a session
     751    "nsessions",        # number of sessions in the system
     752    "nusers",   # number of users in the system
     753    "size",             # size of a file or filesystem
     754    "host",             # Name  of host on which job should be run
     755    "nodes",    # Number and/or type of nodes to be reserved for exclusive use by the job
     756    "other",    # Allows a  user  to  specify  site  specific  information
     757    "software", # Allows a user to specify software required by the job
    758758]
    759759
     
    773773  key = string.strip(l[0])
    774774  if len(l) > 2:
    775         val = string.strip( '='.join(l[1:]) )
     775    val = string.strip( '='.join(l[1:]) )
    776776  else:
    777         val = string.strip(l[1])
     777    val = string.strip(l[1])
    778778
    779779  key = string.strip(key)
Note: See TracChangeset for help on using the changeset viewer.