diff options
-rw-r--r-- | bitbake/lib/bb/utils.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py index 7d37a745a4..670e592fe0 100644 --- a/bitbake/lib/bb/utils.py +++ b/bitbake/lib/bb/utils.py | |||
@@ -862,21 +862,16 @@ def nonblockingfd(fd): | |||
862 | fcntl.fcntl(fd, fcntl.F_SETFL, fcntl.fcntl(fd, fcntl.F_GETFL) | os.O_NONBLOCK) | 862 | fcntl.fcntl(fd, fcntl.F_SETFL, fcntl.fcntl(fd, fcntl.F_GETFL) | os.O_NONBLOCK) |
863 | 863 | ||
864 | def process_profilelog(fn): | 864 | def process_profilelog(fn): |
865 | # Redirect stdout to capture profile information | ||
866 | pout = open(fn + '.processed', 'w') | 865 | pout = open(fn + '.processed', 'w') |
867 | so = sys.stdout.fileno() | ||
868 | orig_so = os.dup(sys.stdout.fileno()) | ||
869 | os.dup2(pout.fileno(), so) | ||
870 | 866 | ||
871 | import pstats | 867 | import pstats |
872 | p = pstats.Stats(fn) | 868 | p = pstats.Stats(fn, stream=pout) |
873 | p.sort_stats('time') | 869 | p.sort_stats('time') |
874 | p.print_stats() | 870 | p.print_stats() |
875 | p.print_callers() | 871 | p.print_callers() |
876 | p.sort_stats('cumulative') | 872 | p.sort_stats('cumulative') |
877 | p.print_stats() | 873 | p.print_stats() |
878 | 874 | ||
879 | os.dup2(orig_so, so) | ||
880 | pout.flush() | 875 | pout.flush() |
881 | pout.close() | 876 | pout.close() |
882 | 877 | ||