Skip to content

Commit

Permalink
Merge pull request #227 from dnltz/WIP/dnltz/fix-psutil
Browse files Browse the repository at this point in the history
ihp-sg13g2: libs.tech: klayout: python: Move getProcessNames()
  • Loading branch information
KrzysztofHerman authored Oct 18, 2024
2 parents d3b389d + c27deca commit 7c983da
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,10 @@ def __init__(self):

tech = Tech.get('SG13_dev')

processNames = getProcessNames()

if os.getenv('IHP_PYCELL_LIB_PRINT_PROCESS_TREE') is not None:
processChain = ''
isFirst = True
for processName in reversed(processNames):
for processName in reversed(getProcessNames()):
if not isFirst:
processChain += ' <- '
processChain += "'" + processName + "'"
Expand Down

0 comments on commit 7c983da

Please sign in to comment.