Commit e8ea65a9 authored by apatrick@chromium.org's avatar apatrick@chromium.org

Corrected GPU watchdog termination error message.

TEST=try
BUG=none

Review URL: http://codereview.chromium.org/6262006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71738 0039d316-1c4b-4281-b951-d872f2087c98
parent ada42fcc
...@@ -217,8 +217,8 @@ void GpuWatchdogThread::OnExit() { ...@@ -217,8 +217,8 @@ void GpuWatchdogThread::OnExit() {
return; return;
#endif #endif
LOG(ERROR) << "The GPU process hung. Restarting after " LOG(ERROR) << "The GPU process hung. Terminating after "
<< timeout_ << " seconds."; << timeout_ << " ms.";
volatile int* null_pointer = NULL; volatile int* null_pointer = NULL;
*null_pointer = timeout; *null_pointer = timeout;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment