[llvm-commits] [llvm] r171559 - /llvm/trunk/lib/Support/Windows/Process.inc

Chandler Carruth chandlerc at gmail.com
Fri Jan 4 15:46:04 PST 2013


Author: chandlerc
Date: Fri Jan  4 17:46:04 2013
New Revision: 171559

URL: http://llvm.org/viewvc/llvm-project?rev=171559&view=rev
Log:
Fix an obvious typo spotted by Reid Kleckner, and breaking windows builds.

Modified:
    llvm/trunk/lib/Support/Windows/Process.inc

Modified: llvm/trunk/lib/Support/Windows/Process.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Process.inc?rev=171559&r1=171558&r2=171559&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Process.inc (original)
+++ llvm/trunk/lib/Support/Windows/Process.inc Fri Jan  4 17:46:04 2013
@@ -116,7 +116,7 @@
     return;
 
   user_time = getTimeValueFromFILETIME(UserTime);
-  sys_time = getTimeValueFromFILETIME(SystemTime);
+  sys_time = getTimeValueFromFILETIME(KernelTime);
 }
 
 int Process::GetCurrentUserId()





More information about the llvm-commits mailing list