diff options
author | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 02:46:49 +0000 |
---|---|---|
committer | tonyg@chromium.org <tonyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 02:46:49 +0000 |
commit | 451cc503476c667f44f6e0029c901348e27936f8 (patch) | |
tree | e09dcbfeca59d5614924c8bb7c6cd206008f8cb0 /tools | |
parent | 915bb8a0897ed3f8a84400023267ed4aafb248e8 (diff) | |
download | chromium_src-451cc503476c667f44f6e0029c901348e27936f8.zip chromium_src-451cc503476c667f44f6e0029c901348e27936f8.tar.gz chromium_src-451cc503476c667f44f6e0029c901348e27936f8.tar.bz2 |
Revert 274447 "[Telemetry] Don't setpgrp on cros."
Planning to revert a CL that this modified.
BUG=380245
> [Telemetry] Don't setpgrp on cros.
>
> It doesn't work there for some reason.
>
> BUG=
>
> Review URL: https://codereview.chromium.org/314463002
TBR=tonyg@chromium.org
Review URL: https://codereview.chromium.org/307423006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274704 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/telemetry/telemetry/util/global_hooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/telemetry/telemetry/util/global_hooks.py b/tools/telemetry/telemetry/util/global_hooks.py index 9b787ec..4d50417 100644 --- a/tools/telemetry/telemetry/util/global_hooks.py +++ b/tools/telemetry/telemetry/util/global_hooks.py @@ -83,7 +83,7 @@ def InstallAtExitHook(): hangs on the builbots. """ # TODO(tonyg): Find a way to do something similar on Windows. - if platform.GetHostPlatform().GetOSName() not in ['linux', 'mac']: + if platform.GetHostPlatform().GetOSName() == 'win': return # Create new process group and become its leader. |